pub enum DeleteFontMsg {
Font(FontKey),
Instance(FontInstanceKey, (Au, DpiScaleFactor)),
}Variants§
Font(FontKey)
Instance(FontInstanceKey, (Au, DpiScaleFactor))
Implementations§
Source§impl DeleteFontMsg
impl DeleteFontMsg
pub fn into_resource_update(&self) -> ResourceUpdate
Trait Implementations§
Source§impl Clone for DeleteFontMsg
impl Clone for DeleteFontMsg
Source§fn clone(&self) -> DeleteFontMsg
fn clone(&self) -> DeleteFontMsg
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 DeleteFontMsg
impl Debug for DeleteFontMsg
Source§impl Ord for DeleteFontMsg
impl Ord for DeleteFontMsg
Source§fn cmp(&self, other: &DeleteFontMsg) -> Ordering
fn cmp(&self, other: &DeleteFontMsg) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeleteFontMsg
impl PartialEq for DeleteFontMsg
Source§impl PartialOrd for DeleteFontMsg
impl PartialOrd for DeleteFontMsg
impl Eq for DeleteFontMsg
impl StructuralPartialEq for DeleteFontMsg
Auto Trait Implementations§
impl Freeze for DeleteFontMsg
impl RefUnwindSafe for DeleteFontMsg
impl Send for DeleteFontMsg
impl Sync for DeleteFontMsg
impl Unpin for DeleteFontMsg
impl UnwindSafe for DeleteFontMsg
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more