pub struct FontCharInfo {
pub c: char,
pub data: Vec<Vec<u8>>,
pub top_offset: u8,
pub height: usize,
pub width: usize,
}Fields§
§c: char§data: Vec<Vec<u8>>§top_offset: u8§height: usize§width: usizeTrait Implementations§
Source§impl Clone for FontCharInfo
impl Clone for FontCharInfo
Source§fn clone(&self) -> FontCharInfo
fn clone(&self) -> FontCharInfo
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 FontCharInfo
impl RefUnwindSafe for FontCharInfo
impl Send for FontCharInfo
impl Sync for FontCharInfo
impl Unpin for FontCharInfo
impl UnwindSafe for FontCharInfo
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