[][src]Enum cairo::Format

pub enum Format {
    Invalid,
    ARgb32,
    Rgb24,
    A8,
    A1,
    Rgb16_565,
    Rgb30,
    // some variants omitted
}

Variants

InvalidARgb32Rgb24A8A1Rgb16_565Rgb30

Methods

impl Format[src]

pub fn stride_for_width(self, width: u32) -> Result<i32, ()>[src]

Trait Implementations

impl PartialEq<Format> for Format[src]

impl Copy for Format[src]

impl Eq for Format[src]

impl Clone for Format[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Format[src]

impl Display for Format[src]

impl StaticType for Format[src]

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

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

impl SetValue for Format[src]

Auto Trait Implementations

impl Send for Format

impl Unpin for Format

impl Sync for Format

impl UnwindSafe for Format

impl RefUnwindSafe for Format

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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

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

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