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
sourceimpl Debug for FT_Outline
impl Debug for FT_Outline
sourceimpl Hash for FT_Outline
impl Hash for FT_Outline
sourceimpl PartialEq<FT_Outline> for FT_Outline
impl PartialEq<FT_Outline> for FT_Outline
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &FT_Outline) -> bool
fn ne(&self, other: &FT_Outline) -> bool
This method tests for !=
.
impl Eq for FT_Outline
impl StructuralEq for FT_Outline
impl StructuralPartialEq for FT_Outline
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more