pub enum EndCondition {
Fixed,
Pinned,
SemiRigid {
k_theta: f64,
},
}Variants§
Trait Implementations§
Source§impl Clone for EndCondition
impl Clone for EndCondition
Source§fn clone(&self) -> EndCondition
fn clone(&self) -> EndCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EndCondition
Source§impl Debug for EndCondition
impl Debug for EndCondition
Source§impl<'de> Deserialize<'de> for EndCondition
impl<'de> Deserialize<'de> for EndCondition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EndCondition
impl PartialEq for EndCondition
Source§fn eq(&self, other: &EndCondition) -> bool
fn eq(&self, other: &EndCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EndCondition
impl Serialize for EndCondition
impl StructuralPartialEq for EndCondition
Auto Trait Implementations§
impl Freeze for EndCondition
impl RefUnwindSafe for EndCondition
impl Send for EndCondition
impl Sync for EndCondition
impl Unpin for EndCondition
impl UnsafeUnpin for EndCondition
impl UnwindSafe for EndCondition
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