Struct surgeshaper_asym::imports::imports::OwnedArcRepr [−][src]
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
pub fn into_owned<D>(
self_: ArrayBase<OwnedArcRepr<A>, D>
) -> ArrayBase<OwnedRepr<<OwnedArcRepr<A> as RawData>::Elem>, D> where
A: Clone,
D: Dimension,
type MaybeUninit = OwnedArcRepr<MaybeUninit<A>>
type MaybeUninit = OwnedArcRepr<MaybeUninit<A>>
Corresponding owned data with MaybeUninit elements
type Elem = A
type Elem = A
The array element type.
pub fn _is_pointer_inbounds(
&self,
self_ptr: *const <OwnedArcRepr<A> as RawData>::Elem
) -> bool
This trait is private to implement; this method exists to make it impossible to implement outside the crate. Read more
pub unsafe fn clone_with_ptr(
&self,
ptr: NonNull<<OwnedArcRepr<A> as RawData>::Elem>
) -> (OwnedArcRepr<A>, NonNull<<OwnedArcRepr<A> as RawData>::Elem>)
pub fn try_ensure_unique<D>(self_: &mut ArrayBase<OwnedArcRepr<A>, D>) where
D: Dimension,
OwnedArcRepr<A>: Sized,
type Output = OwnedArcRepr<B>
type Output = OwnedArcRepr<B>
The resulting array storage of the same kind but substituted element type
Unsafely translate the data representation from one element representation to another. Read more
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
Mutably borrows from an owned value. Read more