pub struct GlyphCommands {
pub ch: char,
pub glyph_id: usize,
pub origin_x: f64,
pub origin_y: f64,
pub advance_width: f64,
pub commands: Vec<PathCommand>,
pub bitmap: Option<BitmapGlyphCommands>,
}Fields§
§ch: char§glyph_id: usize§origin_x: f64§origin_y: f64§advance_width: f64§commands: Vec<PathCommand>§bitmap: Option<BitmapGlyphCommands>Trait Implementations§
Source§impl Clone for GlyphCommands
impl Clone for GlyphCommands
Source§fn clone(&self) -> GlyphCommands
fn clone(&self) -> GlyphCommands
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 moreAuto Trait Implementations§
impl Freeze for GlyphCommands
impl RefUnwindSafe for GlyphCommands
impl Send for GlyphCommands
impl Sync for GlyphCommands
impl Unpin for GlyphCommands
impl UnsafeUnpin for GlyphCommands
impl UnwindSafe for GlyphCommands
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