#[repr(C)]pub enum ShapeRendering {
OptimizeSpeed = 0,
CrispEdges = 1,
GeometricPrecision = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for ShapeRendering
impl Clone for ShapeRendering
Source§fn clone(&self) -> ShapeRendering
fn clone(&self) -> ShapeRendering
Returns a copy 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 ShapeRendering
impl Debug for ShapeRendering
Source§impl Hash for ShapeRendering
impl Hash for ShapeRendering
Source§impl Ord for ShapeRendering
impl Ord for ShapeRendering
Source§fn cmp(&self, other: &ShapeRendering) -> Ordering
fn cmp(&self, other: &ShapeRendering) -> 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 ShapeRendering
impl PartialEq for ShapeRendering
Source§impl PartialOrd for ShapeRendering
impl PartialOrd for ShapeRendering
impl Copy for ShapeRendering
impl Eq for ShapeRendering
impl StructuralPartialEq for ShapeRendering
Auto Trait Implementations§
impl Freeze for ShapeRendering
impl RefUnwindSafe for ShapeRendering
impl Send for ShapeRendering
impl Sync for ShapeRendering
impl Unpin for ShapeRendering
impl UnwindSafe for ShapeRendering
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