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

pub struct Transform {
    pub base: xcb_render_transform_t,
}

Fields

base: xcb_render_transform_t

Methods

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 Copy for Transform[src]

impl Clone for Transform[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for Transform

impl Sync for Transform

impl Send for Transform

impl UnwindSafe for Transform

impl RefUnwindSafe for Transform

Blanket Implementations

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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