[][src]Struct breadx::auto::xv::Type

#[repr(transparent)]pub struct Type {
    pub inner: u8,
}

Fields

inner: u8

Implementations

impl Type[src]

pub fn input_mask(&self) -> bool[src]

pub fn set_input_mask(&mut self, val: bool) -> &mut Self[src]

pub fn output_mask(&self) -> bool[src]

pub fn set_output_mask(&mut self, val: bool) -> &mut Self[src]

pub fn video_mask(&self) -> bool[src]

pub fn set_video_mask(&mut self, val: bool) -> &mut Self[src]

pub fn still_mask(&self) -> bool[src]

pub fn set_still_mask(&mut self, val: bool) -> &mut Self[src]

pub fn image_mask(&self) -> bool[src]

pub fn set_image_mask(&mut self, val: bool) -> &mut Self[src]

pub fn new(
    input_mask: bool,
    output_mask: bool,
    video_mask: bool,
    still_mask: bool,
    image_mask: bool
) -> Self
[src]

pub fn count_ones(&self) -> usize[src]

Trait Implementations

impl AsByteSequence for Type[src]

impl BitAnd<Type> for Type[src]

type Output = Type

The resulting type after applying the & operator.

impl Clone for Type[src]

impl Copy for Type[src]

impl Debug for Type[src]

impl Default for Type[src]

impl Eq for Type[src]

impl Not for Type[src]

type Output = Type

The resulting type after applying the ! operator.

impl Ord for Type[src]

impl PartialEq<Type> for Type[src]

impl PartialOrd<Type> for Type[src]

impl StructuralEq for Type[src]

impl StructuralPartialEq for Type[src]

Auto Trait Implementations

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, 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.