pub struct GemmFlags(/* private fields */);Expand description
generalized matrix multiplication flags
Implementations§
Trait Implementations§
Source§impl OpenCVBitfieldEnum for GemmFlags
impl OpenCVBitfieldEnum for GemmFlags
Source§const ALL_FLAGS: &'static [Self]
const ALL_FLAGS: &'static [Self]
List of all valid separate flags for this enum, mostly for internal use
Source§unsafe fn from_i32_unchecked(value: i32) -> Self
unsafe fn from_i32_unchecked(value: i32) -> Self
Construct the enum from an
i32 value without checking its validity Read moreSource§fn try_from_i32(value: i32) -> Result<Self>
fn try_from_i32(value: i32) -> Result<Self>
Construct the enum from an
i32 value, returning an error if any of the set bits do not have associated flagsimpl Copy for GemmFlags
impl Eq for GemmFlags
impl StructuralPartialEq for GemmFlags
Auto Trait Implementations§
impl Freeze for GemmFlags
impl RefUnwindSafe for GemmFlags
impl Send for GemmFlags
impl Sync for GemmFlags
impl Unpin for GemmFlags
impl UnwindSafe for GemmFlags
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