Struct ndarray::OwnedArcRepr
source · pub struct OwnedArcRepr<A>(_);
Expand description
ArcArray’s representation.
Don’t use this type directly—use the type alias
ArcArray
for the array type!
Trait Implementations§
source§impl<A> Clone for OwnedArcRepr<A>
impl<A> Clone for OwnedArcRepr<A>
source§impl<A> DataOwned for OwnedArcRepr<A>
impl<A> DataOwned for OwnedArcRepr<A>
§type MaybeUninit = OwnedArcRepr<MaybeUninit<A>>
type MaybeUninit = OwnedArcRepr<MaybeUninit<A>>
Corresponding owned data with MaybeUninit elements
source§impl<A: Debug> Debug for OwnedArcRepr<A>
impl<A: Debug> Debug for OwnedArcRepr<A>
source§impl<A, B> RawDataSubst<B> for OwnedArcRepr<A>
impl<A, B> RawDataSubst<B> for OwnedArcRepr<A>
§type Output = OwnedArcRepr<B>
type Output = OwnedArcRepr<B>
The resulting array storage of the same kind but substituted element type
source§unsafe fn data_subst(self) -> Self::Output
unsafe fn data_subst(self) -> Self::Output
Unsafely translate the data representation from one element
representation to another. Read more
impl<A> Data for OwnedArcRepr<A>
impl<A> DataMut for OwnedArcRepr<A>where A: Clone,
impl<A> RawDataClone for OwnedArcRepr<A>
impl<A> RawDataMut for OwnedArcRepr<A>where A: Clone,
Auto Trait Implementations§
impl<A> RefUnwindSafe for OwnedArcRepr<A>where A: RefUnwindSafe,
impl<A> Send for OwnedArcRepr<A>where A: Send + Sync,
impl<A> Sync for OwnedArcRepr<A>where A: Send + Sync,
impl<A> Unpin for OwnedArcRepr<A>
impl<A> UnwindSafe for OwnedArcRepr<A>where A: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more