#[repr(C)]pub struct OwnedRepr<A> { /* private fields */ }
Expand description
Array’s representation.
Don’t use this type directly—use the type alias
Array
for the array type!
Trait Implementations
sourceimpl<A> DataOwned for OwnedRepr<A>
impl<A> DataOwned for OwnedRepr<A>
type MaybeUninit = OwnedRepr<MaybeUninit<A>>
type MaybeUninit = OwnedRepr<MaybeUninit<A>>
Corresponding owned data with MaybeUninit elements
sourceimpl<A> RawData for OwnedRepr<A>
impl<A> RawData for OwnedRepr<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, B> RawDataSubst<B> for OwnedRepr<A>
impl<A, B> RawDataSubst<B> for OwnedRepr<A>
impl<A> Data for OwnedRepr<A>
impl<A> DataMut for OwnedRepr<A>
impl<A> RawDataClone for OwnedRepr<A> where
A: Clone,
impl<A> RawDataMut for OwnedRepr<A>
impl<A> Send for OwnedRepr<A> where
A: Send,
impl<A> Sync for OwnedRepr<A> where
A: Sync,
Auto Trait Implementations
impl<A> RefUnwindSafe for OwnedRepr<A> where
A: RefUnwindSafe,
impl<A> Unpin for OwnedRepr<A>
impl<A> UnwindSafe for OwnedRepr<A> where
A: RefUnwindSafe,
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