pub enum DropoutMode {
None,
Simple,
Smart,
}Expand description
Strategy for preserving very thin strokes.
Variants§
None
Do not apply dropout handling.
Simple
Basic protection for thin strokes that might otherwise disappear.
Smart
More expensive dropout handling for extreme small-size rendering.
Trait Implementations§
Source§impl Clone for DropoutMode
impl Clone for DropoutMode
Source§fn clone(&self) -> DropoutMode
fn clone(&self) -> DropoutMode
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 DropoutMode
impl Debug for DropoutMode
Source§impl PartialEq for DropoutMode
impl PartialEq for DropoutMode
impl Copy for DropoutMode
impl Eq for DropoutMode
impl StructuralPartialEq for DropoutMode
Auto Trait Implementations§
impl Freeze for DropoutMode
impl RefUnwindSafe for DropoutMode
impl Send for DropoutMode
impl Sync for DropoutMode
impl Unpin for DropoutMode
impl UnsafeUnpin for DropoutMode
impl UnwindSafe for DropoutMode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.