pub struct BMFont {
pub info: Option<InfoBlock>,
pub common: Option<CommonBlock>,
pub pages: Vec<String>,
pub chars: HashMap<u32, Char>,
pub kernings: Vec<KerningPair>,
}
Fields§
§info: Option<InfoBlock>
§common: Option<CommonBlock>
§pages: Vec<String>
§chars: HashMap<u32, Char>
§kernings: Vec<KerningPair>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BMFont
impl RefUnwindSafe for BMFont
impl Send for BMFont
impl Sync for BMFont
impl Unpin for BMFont
impl UnwindSafe for BMFont
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