Struct cairo_sys::cairo_matrix_t
source · #[repr(C)]pub struct cairo_matrix_t {
pub xx: c_double,
pub yx: c_double,
pub xy: c_double,
pub yy: c_double,
pub x0: c_double,
pub y0: c_double,
}
Fields§
§xx: c_double
§yx: c_double
§xy: c_double
§yy: c_double
§x0: c_double
§y0: c_double
Trait Implementations§
source§impl Clone for cairo_matrix_t
impl Clone for cairo_matrix_t
source§fn clone(&self) -> cairo_matrix_t
fn clone(&self) -> cairo_matrix_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for cairo_matrix_t
impl Debug for cairo_matrix_t
source§impl Display for cairo_matrix_t
impl Display for cairo_matrix_t
source§impl PartialEq for cairo_matrix_t
impl PartialEq for cairo_matrix_t
source§fn eq(&self, other: &cairo_matrix_t) -> bool
fn eq(&self, other: &cairo_matrix_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cairo_matrix_t
impl StructuralPartialEq for cairo_matrix_t
Auto Trait Implementations§
impl RefUnwindSafe for cairo_matrix_t
impl Send for cairo_matrix_t
impl Sync for cairo_matrix_t
impl Unpin for cairo_matrix_t
impl UnwindSafe for cairo_matrix_t
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more