pub struct Metadata {
pub name: String,
pub point_size: i32,
pub resolution: Coord,
pub bounding_box: BoundingBox,
pub metrics_set: MetricsSet,
pub properties: Properties,
}Expand description
BDF file metadata.
Fields§
§name: StringFont name.
point_size: i32Point size.
resolution: CoordX and Y resolution in DPI.
bounding_box: BoundingBoxFont bounding box.
metrics_set: MetricsSetMetrics set.
properties: PropertiesProperties.
Trait Implementations§
impl Eq for Metadata
impl StructuralPartialEq for Metadata
Auto Trait Implementations§
impl Freeze for Metadata
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnsafeUnpin for Metadata
impl UnwindSafe for Metadata
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