[][src]Enum gstreamer_video::VideoTileMode

#[non_exhaustive]pub enum VideoTileMode {
    Unknown,
    Zflipz2x2,
    Linear,
    // some variants omitted
}

Enum value describing the available tiling modes.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown

Unknown or unset tile mode

Zflipz2x2

Every four adjacent blocks - two horizontally and two vertically are grouped together and are located in memory in Z or flipped Z order. In case of odd rows, the last row of blocks is arranged in linear order.

Linear

Trait Implementations

impl Clone for VideoTileMode[src]

impl Copy for VideoTileMode[src]

impl Debug for VideoTileMode[src]

impl Eq for VideoTileMode[src]

impl<'a> FromValue<'a> for VideoTileMode[src]

impl<'a> FromValueOptional<'a> for VideoTileMode[src]

impl Hash for VideoTileMode[src]

impl Ord for VideoTileMode[src]

impl PartialEq<VideoTileMode> for VideoTileMode[src]

impl PartialOrd<VideoTileMode> for VideoTileMode[src]

impl SetValue for VideoTileMode[src]

impl StaticType for VideoTileMode[src]

impl StructuralEq for VideoTileMode[src]

impl StructuralPartialEq for VideoTileMode[src]

Auto Trait Implementations

impl RefUnwindSafe for VideoTileMode

impl Send for VideoTileMode

impl Sync for VideoTileMode

impl Unpin for VideoTileMode

impl UnwindSafe for VideoTileMode

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

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.