Enum rten_tensor::CowData

source ·
pub enum CowData<'a, T> {
    Owned(Vec<T>),
    Borrowed(ViewData<'a, T>),
}
Expand description

Tensor storage which may be either owned or borrowed.

The name is taken from std::borrow::Cow in the standard library, which is conceptually similar.

Variants§

§

Owned(Vec<T>)

A CowData that owns its data.

§

Borrowed(ViewData<'a, T>)

A CowData that borrows data.

Trait Implementations§

source§

impl<'a, T> Storage for CowData<'a, T>

§

type Elem = T

The element type.
source§

const MUTABLE: bool = false

True if this storage allows mutable access via StorageMut. This is used to determine if a layout can be safely used with a storage. Layouts where multiple indices map to the same offset must not be used with mutable storage.
source§

fn len(&self) -> usize

Return the number of elements in the storage.
source§

fn as_ptr(&self) -> *const T

Return a pointer to the first element in the storage.
source§

fn is_empty(&self) -> bool

Return true if the storage contains no elements.
source§

unsafe fn get(&self, offset: usize) -> Option<&Self::Elem>

Return the element at a given offset, or None if offset >= self.len(). Read more
source§

unsafe fn get_unchecked(&self, offset: usize) -> &Self::Elem

Return a reference to the element at offset. Read more
source§

fn slice(&self, range: Range<usize>) -> ViewData<'_, Self::Elem>

Return a view of a sub-region of the storage. Read more
source§

fn view(&self) -> ViewData<'_, Self::Elem>

Return an immutable view of this storage.
source§

unsafe fn as_slice(&self) -> &[Self::Elem]

Return the contents of the storage as a slice. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for CowData<'a, T>

§

impl<'a, T> RefUnwindSafe for CowData<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for CowData<'a, T>
where T: Send,

§

impl<'a, T> Sync for CowData<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for CowData<'a, T>
where T: Unpin,

§

impl<'a, T> UnwindSafe for CowData<'a, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoStorage for T
where T: Storage,

§

type Output = T

source§

fn into_storage(self) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.