#[repr(u8)]pub enum FlagOrder {
C = 101,
F = 102,
}Expand description
The order of the tensor.
§Default
Default order depends on cargo feature f_prefer.
If f_prefer is set, then FlagOrder::F is applied as default;
otherwise FlagOrder::C is applied as default.
§IMPORTANT NOTE
F-prefer is not a stable feature currently! We develop only in C-prefer currently.
Variants§
Implementations§
Trait Implementations§
Source§impl From<CBLAS_LAYOUT> for FlagOrder
impl From<CBLAS_LAYOUT> for FlagOrder
Source§fn from(val: CBLAS_LAYOUT) -> Self
fn from(val: CBLAS_LAYOUT) -> Self
Converts to this type from the input type.
Source§impl From<FlagOrder> for CBLAS_LAYOUT
impl From<FlagOrder> for CBLAS_LAYOUT
impl Copy for FlagOrder
impl Eq for FlagOrder
impl StructuralPartialEq for FlagOrder
Auto Trait Implementations§
impl Freeze for FlagOrder
impl RefUnwindSafe for FlagOrder
impl Send for FlagOrder
impl Sync for FlagOrder
impl Unpin for FlagOrder
impl UnwindSafe for FlagOrder
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