usecrate::drop::Metadata;/// A package for a typeface with specific properties; e.g. bold, italic.
#[derive(Clone, Debug)]pubstructFont{metadata: Metadata,
file_name: String,
}implFont{/// Returns basic metadata for the drop.
#[inline]pubconstfnmetadata(&self)->&Metadata{&self.metadata
}}