pub enum SmoothingGroup {
Off,
Group(u32),
}Expand description
Smoothing group selector for the s directive.
s 0 and s off both disable smoothing; any positive integer names a
smoothing group.
Variants§
Trait Implementations§
Source§impl Clone for SmoothingGroup
impl Clone for SmoothingGroup
Source§fn clone(&self) -> SmoothingGroup
fn clone(&self) -> SmoothingGroup
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 SmoothingGroup
impl Debug for SmoothingGroup
Source§impl PartialEq for SmoothingGroup
impl PartialEq for SmoothingGroup
impl Copy for SmoothingGroup
impl Eq for SmoothingGroup
impl StructuralPartialEq for SmoothingGroup
Auto Trait Implementations§
impl Freeze for SmoothingGroup
impl RefUnwindSafe for SmoothingGroup
impl Send for SmoothingGroup
impl Sync for SmoothingGroup
impl Unpin for SmoothingGroup
impl UnsafeUnpin for SmoothingGroup
impl UnwindSafe for SmoothingGroup
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