Struct ndarray::RawViewRepr [−][src]
pub struct RawViewRepr<A> { /* fields omitted */ }
Expand description
Array pointer’s representation.
Don’t use this type directly—use the type aliases
RawArrayView
/
RawArrayViewMut
for the array type!
Trait Implementations
type Output = RawViewRepr<*const B>
type Output = RawViewRepr<*const B>
The resulting array storage of the same kind but substituted element type
type Output = RawViewRepr<*mut B>
type Output = RawViewRepr<*mut B>
The resulting array storage of the same kind but substituted element type
Auto Trait Implementations
impl<A> RefUnwindSafe for RawViewRepr<A> where
A: RefUnwindSafe,
impl<A> Send for RawViewRepr<A> where
A: Send,
impl<A> Sync for RawViewRepr<A> where
A: Sync,
impl<A> Unpin for RawViewRepr<A> where
A: Unpin,
impl<A> UnwindSafe for RawViewRepr<A> where
A: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more