pub enum TxSize {
Show 19 variants
TX_4X4,
TX_8X8,
TX_16X16,
TX_32X32,
TX_64X64,
TX_4X8,
TX_8X4,
TX_8X16,
TX_16X8,
TX_16X32,
TX_32X16,
TX_32X64,
TX_64X32,
TX_4X16,
TX_16X4,
TX_8X32,
TX_32X8,
TX_16X64,
TX_64X16,
}Expand description
Transform Size
Variants§
TX_4X4
TX_8X8
TX_16X16
TX_32X32
TX_64X64
TX_4X8
TX_8X4
TX_8X16
TX_16X8
TX_16X32
TX_32X16
TX_32X64
TX_64X32
TX_4X16
TX_16X4
TX_8X32
TX_32X8
TX_16X64
TX_64X16
Implementations§
Trait Implementations§
Source§impl Ord for TxSize
impl Ord for TxSize
Source§impl PartialOrd for TxSize
impl PartialOrd for TxSize
impl Copy for TxSize
impl Eq for TxSize
impl StructuralPartialEq for TxSize
Auto Trait Implementations§
impl Freeze for TxSize
impl RefUnwindSafe for TxSize
impl Send for TxSize
impl Sync for TxSize
impl Unpin for TxSize
impl UnsafeUnpin for TxSize
impl UnwindSafe for TxSize
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