pub struct Deltas<T> {
pub peak_tuple: Tuple,
pub intermediate_region: Option<(Tuple, Tuple)>,
pub deltas: Vec<T>,
pub best_point_packing: PackedPointNumbers,
}Fields§
§peak_tuple: Tuple§intermediate_region: Option<(Tuple, Tuple)>§deltas: Vec<T>§best_point_packing: PackedPointNumbersImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Deltas<T>
impl<T> RefUnwindSafe for Deltas<T>where
T: RefUnwindSafe,
impl<T> Send for Deltas<T>where
T: Send,
impl<T> Sync for Deltas<T>where
T: Sync,
impl<T> Unpin for Deltas<T>where
T: Unpin,
impl<T> UnsafeUnpin for Deltas<T>
impl<T> UnwindSafe for Deltas<T>where
T: UnwindSafe,
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.