Struct extendr_api::prelude::OwnedRepr
source · [−]#[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> Data for OwnedRepr<A>
impl<A> Data for OwnedRepr<A>
fn into_owned<D>(
self_: ArrayBase<OwnedRepr<A>, D>
) -> ArrayBase<OwnedRepr<<OwnedRepr<A> as RawData>::Elem>, D> where
A: Clone,
D: Dimension,
fn try_into_owned_nocopy<D>(
self_: ArrayBase<OwnedRepr<A>, D>
) -> Result<ArrayBase<OwnedRepr<<OwnedRepr<A> as RawData>::Elem>, D>, ArrayBase<OwnedRepr<A>, D>> where
D: Dimension,
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
fn new(elements: Vec<A, Global>) -> OwnedRepr<A>
sourceimpl<A> RawData for OwnedRepr<A>
impl<A> RawData for OwnedRepr<A>
type Elem = A
type Elem = A
The array element type.
fn _data_slice(&self) -> Option<&[A]>
fn _is_pointer_inbounds(
&self,
self_ptr: *const <OwnedRepr<A> as RawData>::Elem
) -> bool
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> RawDataClone for OwnedRepr<A> where
A: Clone,
impl<A> RawDataClone for OwnedRepr<A> where
A: Clone,
unsafe fn clone_with_ptr(
&self,
ptr: NonNull<<OwnedRepr<A> as RawData>::Elem>
) -> (OwnedRepr<A>, NonNull<<OwnedRepr<A> as RawData>::Elem>)
unsafe fn clone_from_with_ptr(
&mut self,
other: &OwnedRepr<A>,
ptr: NonNull<<OwnedRepr<A> as RawData>::Elem>
) -> NonNull<<OwnedRepr<A> as RawData>::Elem>
sourceimpl<A> RawDataMut for OwnedRepr<A>
impl<A> RawDataMut for OwnedRepr<A>
sourceimpl<A, B> RawDataSubst<B> for OwnedRepr<A>
impl<A, B> RawDataSubst<B> for OwnedRepr<A>
sourceunsafe fn data_subst(self) -> <OwnedRepr<A> as RawDataSubst<B>>::Output
unsafe fn data_subst(self) -> <OwnedRepr<A> as RawDataSubst<B>>::Output
Unsafely translate the data representation from one element representation to another. Read more
impl<A> DataMut 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