pub struct BaFontMapEntry {
pub font_name: String,
pub charset: u8,
}Expand description
A single entry in the form font map.
Fields§
§font_name: StringThe font resource name (e.g., “Helv”, “Cour”, “ZaDb”).
charset: u8Charset identifier (0 = ANSI, 1 = Symbol, etc.).
Trait Implementations§
Source§impl Clone for BaFontMapEntry
impl Clone for BaFontMapEntry
Source§fn clone(&self) -> BaFontMapEntry
fn clone(&self) -> BaFontMapEntry
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 BaFontMapEntry
impl RefUnwindSafe for BaFontMapEntry
impl Send for BaFontMapEntry
impl Sync for BaFontMapEntry
impl Unpin for BaFontMapEntry
impl UnsafeUnpin for BaFontMapEntry
impl UnwindSafe for BaFontMapEntry
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