Struct extendr_api::prelude::OwnedArcRepr
source · pub struct OwnedArcRepr<A>(pub(crate) Arc<OwnedRepr<A>>);
Expand description
ArcArray’s representation.
Don’t use this type directly—use the type alias
ArcArray
for the array type!
Tuple Fields§
§0: Arc<OwnedRepr<A>>
Trait Implementations§
source§impl<A> Clone for OwnedArcRepr<A>
impl<A> Clone for OwnedArcRepr<A>
source§fn clone(&self) -> OwnedArcRepr<A>
fn clone(&self) -> OwnedArcRepr<A>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§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 for OwnedArcRepr<A>where
A: Debug,
impl<A> Debug for OwnedArcRepr<A>where A: Debug,
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) -> <OwnedArcRepr<A> as RawDataSubst<B>>::Output
unsafe fn data_subst(self) -> <OwnedArcRepr<A> as RawDataSubst<B>>::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