#[repr(u8)]pub enum PathConvexity {
Unknown = 0,
Convex = 1,
Concave = 2,
}Expand description
Path convexity.
Variants§
Trait Implementations§
Source§impl Clone for PathConvexity
impl Clone for PathConvexity
Source§fn clone(&self) -> PathConvexity
fn clone(&self) -> PathConvexity
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 PathConvexity
impl Debug for PathConvexity
Source§impl Default for PathConvexity
impl Default for PathConvexity
Source§fn default() -> PathConvexity
fn default() -> PathConvexity
Returns the “default value” for a type. Read more
Source§impl Hash for PathConvexity
impl Hash for PathConvexity
Source§impl PartialEq for PathConvexity
impl PartialEq for PathConvexity
impl Copy for PathConvexity
impl Eq for PathConvexity
impl StructuralPartialEq for PathConvexity
Auto Trait Implementations§
impl Freeze for PathConvexity
impl RefUnwindSafe for PathConvexity
impl Send for PathConvexity
impl Sync for PathConvexity
impl Unpin for PathConvexity
impl UnsafeUnpin for PathConvexity
impl UnwindSafe for PathConvexity
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