pub enum PatchFormat {
TableKeyed {
fully_invalidating: bool,
},
GlyphKeyed,
}Expand description
Models the encoding type for a incremental font transfer patch. See: https://w3c.github.io/IFT/Overview.html#font-patch-formats-summary
Variants§
Trait Implementations§
Source§impl Clone for PatchFormat
impl Clone for PatchFormat
Source§fn clone(&self) -> PatchFormat
fn clone(&self) -> PatchFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PatchFormat
Source§impl Debug for PatchFormat
impl Debug for PatchFormat
impl Eq for PatchFormat
Source§impl Hash for PatchFormat
impl Hash for PatchFormat
Source§impl PartialEq for PatchFormat
impl PartialEq for PatchFormat
Source§fn eq(&self, other: &PatchFormat) -> bool
fn eq(&self, other: &PatchFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchFormat
Auto Trait Implementations§
impl Freeze for PatchFormat
impl RefUnwindSafe for PatchFormat
impl Send for PatchFormat
impl Sync for PatchFormat
impl Unpin for PatchFormat
impl UnsafeUnpin for PatchFormat
impl UnwindSafe for PatchFormat
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