Enum hapi_rs::geometry::CurveOrders
source · #[repr(i32)]
#[non_exhaustive]
pub enum CurveOrders {
Varying,
Invalid,
Linear,
Quadratic,
Cubic,
}
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Varying
Invalid
Linear
Quadratic
Cubic
Trait Implementations
sourceimpl Clone for CurveOrders
impl Clone for CurveOrders
sourcefn clone(&self) -> CurveOrders
fn clone(&self) -> CurveOrders
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CurveOrders
impl Debug for CurveOrders
sourceimpl Hash for CurveOrders
impl Hash for CurveOrders
sourceimpl PartialEq<CurveOrders> for CurveOrders
impl PartialEq<CurveOrders> for CurveOrders
sourcefn eq(&self, other: &CurveOrders) -> bool
fn eq(&self, other: &CurveOrders) -> bool
impl Copy for CurveOrders
impl Eq for CurveOrders
impl StructuralEq for CurveOrders
impl StructuralPartialEq for CurveOrders
Auto Trait Implementations
impl RefUnwindSafe for CurveOrders
impl Send for CurveOrders
impl Sync for CurveOrders
impl Unpin for CurveOrders
impl UnwindSafe for CurveOrders
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more