Enum rav1e::prelude::TxType[][src]

pub enum TxType {
    DCT_DCT,
    ADST_DCT,
    DCT_ADST,
    ADST_ADST,
    FLIPADST_DCT,
    DCT_FLIPADST,
    FLIPADST_FLIPADST,
    ADST_FLIPADST,
    FLIPADST_ADST,
    IDTX,
    V_DCT,
    H_DCT,
    V_ADST,
    H_ADST,
    V_FLIPADST,
    H_FLIPADST,
}

Variants

DCT_DCT
ADST_DCT
DCT_ADST
ADST_ADST
FLIPADST_DCT
DCT_FLIPADST
FLIPADST_FLIPADST
ADST_FLIPADST
FLIPADST_ADST
IDTX
V_DCT
H_DCT
V_ADST
H_ADST
V_FLIPADST
H_FLIPADST

Implementations

impl TxType[src]

pub fn uv_inter(self, uv_tx_size: TxSize) -> Self[src]

Trait Implementations

impl Clone for TxType[src]

impl Copy for TxType[src]

impl Debug for TxType[src]

impl Eq for TxType[src]

impl Ord for TxType[src]

impl PartialEq<TxType> for TxType[src]

impl PartialOrd<TxType> for TxType[src]

impl StructuralEq for TxType[src]

impl StructuralPartialEq for TxType[src]

Auto Trait Implementations

impl RefUnwindSafe for TxType

impl Send for TxType

impl Sync for TxType

impl Unpin for TxType

impl UnwindSafe for TxType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.