pub struct FontMaster {
pub id: String,
pub name: String,
pub axes_values: Vec<OrderedFloat<f64>>,
pub number_values: BTreeMap<SmolStr, OrderedFloat<f64>>,
pub custom_parameters: CustomParameters,
pub user_data: BTreeMap<SmolStr, Plist>,
pub metrics_source_id: Option<String>,
/* private fields */
}Fields§
§id: String§name: String§axes_values: Vec<OrderedFloat<f64>>§number_values: BTreeMap<SmolStr, OrderedFloat<f64>>§custom_parameters: CustomParameters§user_data: BTreeMap<SmolStr, Plist>§metrics_source_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for FontMaster
impl Clone for FontMaster
Source§fn clone(&self) -> FontMaster
fn clone(&self) -> FontMaster
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 moreSource§impl Debug for FontMaster
impl Debug for FontMaster
Source§impl Hash for FontMaster
impl Hash for FontMaster
Source§impl PartialEq for FontMaster
impl PartialEq for FontMaster
impl StructuralPartialEq for FontMaster
Auto Trait Implementations§
impl Freeze for FontMaster
impl RefUnwindSafe for FontMaster
impl Send for FontMaster
impl Sync for FontMaster
impl Unpin for FontMaster
impl UnwindSafe for FontMaster
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.