pub enum Storage {
View {
buffer_ref: StorageRef,
view_ref: StorageRef,
},
Owned {
buffer_ref: StorageRef,
},
}Expand description
A reference to a tensor storage.
Variants§
View
When a tensor is a partial view of another tensor.
Fields
§
buffer_ref: StorageRefStorage reference for the whole buffer.
§
view_ref: StorageRefStorage reference for the partial buffer.
Owned
When a tensor use all of its buffer.
Fields
§
buffer_ref: StorageRefStorage reference for the whole buffer.
Implementations§
Source§impl Storage
impl Storage
Sourcepub fn buffer_ref(&self) -> &StorageRef
pub fn buffer_ref(&self) -> &StorageRef
Get the whole buffer reference.
Trait Implementations§
impl StructuralPartialEq for Storage
Auto Trait Implementations§
impl Freeze for Storage
impl RefUnwindSafe for Storage
impl !Send for Storage
impl !Sync for Storage
impl Unpin for Storage
impl UnwindSafe for Storage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more