Struct freetype_sys::FT_Outline
source · #[repr(C)]pub struct FT_Outline {
pub n_contours: c_short,
pub n_points: c_short,
pub points: *mut FT_Vector,
pub tags: *mut c_char,
pub contours: *mut c_short,
pub flags: c_int,
}
Fields§
§n_contours: c_short
§n_points: c_short
§points: *mut FT_Vector
§contours: *mut c_short
§flags: c_int
Trait Implementations§
source§impl Debug for FT_Outline
impl Debug for FT_Outline
source§impl Hash for FT_Outline
impl Hash for FT_Outline
source§impl PartialEq for FT_Outline
impl PartialEq for FT_Outline
source§fn eq(&self, other: &FT_Outline) -> bool
fn eq(&self, other: &FT_Outline) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FT_Outline
impl StructuralPartialEq for FT_Outline
Auto Trait Implementations§
impl Freeze for FT_Outline
impl RefUnwindSafe for FT_Outline
impl !Send for FT_Outline
impl !Sync for FT_Outline
impl Unpin for FT_Outline
impl UnwindSafe for FT_Outline
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