[][src]Struct xcb::render::Transform

pub struct Transform {
    pub base: xcb_render_transform_t,
}

Fields

base: xcb_render_transform_t

Implementations

impl Transform[src]

pub fn new(
    matrix11: Fixed,
    matrix12: Fixed,
    matrix13: Fixed,
    matrix21: Fixed,
    matrix22: Fixed,
    matrix23: Fixed,
    matrix31: Fixed,
    matrix32: Fixed,
    matrix33: Fixed
) -> Transform
[src]

pub fn matrix11(&self) -> Fixed[src]

pub fn matrix12(&self) -> Fixed[src]

pub fn matrix13(&self) -> Fixed[src]

pub fn matrix21(&self) -> Fixed[src]

pub fn matrix22(&self) -> Fixed[src]

pub fn matrix23(&self) -> Fixed[src]

pub fn matrix31(&self) -> Fixed[src]

pub fn matrix32(&self) -> Fixed[src]

pub fn matrix33(&self) -> Fixed[src]

Trait Implementations

impl Clone for Transform[src]

impl Copy for Transform[src]

Auto Trait Implementations

impl RefUnwindSafe for Transform

impl Send for Transform

impl Sync for Transform

impl Unpin for Transform

impl UnwindSafe for Transform

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.