#[repr(u64)]pub enum FontDisable {
Defer = 0,
Block = 1,
Allow = 2,
Audit = 3,
}Expand description
Non-system-font policy modes.
Variants§
Defer = 0
Defer to the child.
Block = 1
Block non-system fonts.
Allow = 2
Allow non-system fonts.
Audit = 3
Audit non-system font loads.
Trait Implementations§
Source§impl Clone for FontDisable
impl Clone for FontDisable
Source§fn clone(&self) -> FontDisable
fn clone(&self) -> FontDisable
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 FontDisable
Source§impl Debug for FontDisable
impl Debug for FontDisable
Source§impl Default for FontDisable
impl Default for FontDisable
Source§fn default() -> FontDisable
fn default() -> FontDisable
Returns the “default value” for a type. Read more
impl Eq for FontDisable
Source§impl Hash for FontDisable
impl Hash for FontDisable
Source§impl PartialEq for FontDisable
impl PartialEq for FontDisable
impl StructuralPartialEq for FontDisable
Auto Trait Implementations§
impl Freeze for FontDisable
impl RefUnwindSafe for FontDisable
impl Send for FontDisable
impl Sync for FontDisable
impl Unpin for FontDisable
impl UnsafeUnpin for FontDisable
impl UnwindSafe for FontDisable
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