pub struct ViewRepr<A> { /* private fields */ }
Expand description
Array view’s representation.
Don’t use this type directly—use the type aliases
ArrayView
/ ArrayViewMut
for the array type!
Trait Implementations
sourceimpl<'a, A> RawData for ViewRepr<&'a A>
impl<'a, A> RawData for ViewRepr<&'a A>
type Elem = A
type Elem = A
The array element type.
sourcefn __private__(&self) -> PrivateMarker
fn __private__(&self) -> PrivateMarker
This trait is private to implement; this method exists to make it impossible to implement outside the crate. Read more
sourceimpl<'a, A> RawData for ViewRepr<&'a mut A>
impl<'a, A> RawData for ViewRepr<&'a mut A>
type Elem = A
type Elem = A
The array element type.
sourcefn __private__(&self) -> PrivateMarker
fn __private__(&self) -> PrivateMarker
This trait is private to implement; this method exists to make it impossible to implement outside the crate. Read more
sourceimpl<'a, A: 'a, B: 'a> RawDataSubst<B> for ViewRepr<&'a A>
impl<'a, A: 'a, B: 'a> RawDataSubst<B> for ViewRepr<&'a A>
sourceimpl<'a, A: 'a, B: 'a> RawDataSubst<B> for ViewRepr<&'a mut A>
impl<'a, A: 'a, B: 'a> RawDataSubst<B> for ViewRepr<&'a mut A>
impl<A: Copy> Copy for ViewRepr<A>
impl<'a, A> Data for ViewRepr<&'a A>
impl<'a, A> Data for ViewRepr<&'a mut A>
impl<'a, A> DataMut for ViewRepr<&'a mut A>
impl<'a, A> RawDataClone for ViewRepr<&'a A>
impl<'a, A> RawDataMut for ViewRepr<&'a mut A>
Auto Trait Implementations
impl<A> RefUnwindSafe for ViewRepr<A> where
A: RefUnwindSafe,
impl<A> Send for ViewRepr<A> where
A: Send,
impl<A> Sync for ViewRepr<A> where
A: Sync,
impl<A> Unpin for ViewRepr<A> where
A: Unpin,
impl<A> UnwindSafe for ViewRepr<A> where
A: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more