pub struct FIGcharacter {
pub code: u32,
pub characters: Vec<String>,
pub width: u32,
pub height: u32,
}
Expand description
the matched ascii art of one character
Fields§
§code: u32
§characters: Vec<String>
§width: u32
§height: u32
Trait Implementations§
Source§impl Debug for FIGcharacter
impl Debug for FIGcharacter
Auto Trait Implementations§
impl Freeze for FIGcharacter
impl RefUnwindSafe for FIGcharacter
impl Send for FIGcharacter
impl Sync for FIGcharacter
impl Unpin for FIGcharacter
impl UnwindSafe for FIGcharacter
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