pub enum InitEmpty<Init: Storage, Uninit: Storage, L: Layout> {
Empty(TensorBase<Init, L>),
NotEmpty(TensorBase<Uninit, L>),
}Expand description
Result of TensorBase::init_if_empty.
Variants§
Empty(TensorBase<Init, L>)
Empty tensor with initialized storage.
NotEmpty(TensorBase<Uninit, L>)
Non-empty tensor with uninitialized storage.
Auto Trait Implementations§
impl<Init, Uninit, L> Freeze for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> RefUnwindSafe for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> Send for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> Sync for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> Unpin for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> UnsafeUnpin for InitEmpty<Init, Uninit, L>
impl<Init, Uninit, L> UnwindSafe for InitEmpty<Init, Uninit, L>
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> 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