#[repr(C)]pub struct cairo_font_extents_t {
    pub ascent: c_double,
    pub descent: c_double,
    pub height: c_double,
    pub max_x_advance: c_double,
    pub max_y_advance: c_double,
}Fields§
§ascent: c_double§descent: c_double§height: c_double§max_x_advance: c_double§max_y_advance: c_doubleTrait Implementations§
Source§impl Clone for cairo_font_extents_t
 
impl Clone for cairo_font_extents_t
Source§fn clone(&self) -> cairo_font_extents_t
 
fn clone(&self) -> cairo_font_extents_t
Returns a duplicate 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_font_extents_t
 
impl Debug for cairo_font_extents_t
impl Copy for cairo_font_extents_t
Auto Trait Implementations§
impl Freeze for cairo_font_extents_t
impl RefUnwindSafe for cairo_font_extents_t
impl Send for cairo_font_extents_t
impl Sync for cairo_font_extents_t
impl Unpin for cairo_font_extents_t
impl UnwindSafe for cairo_font_extents_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