#[repr(i32)]pub enum LegOpenClose {
SamePosition = 0,
OpenPosition = 1,
ClosePosition = 2,
Unknown = 3,
}Expand description
Combo leg open/close value.
Variants§
SamePosition = 0
Same as combo.
OpenPosition = 1
Open position.
ClosePosition = 2
Close position.
Unknown = 3
Unknown.
Trait Implementations§
Source§impl Clone for LegOpenClose
impl Clone for LegOpenClose
Source§fn clone(&self) -> LegOpenClose
fn clone(&self) -> LegOpenClose
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 LegOpenClose
Source§impl Debug for LegOpenClose
impl Debug for LegOpenClose
Source§impl Default for LegOpenClose
impl Default for LegOpenClose
Source§fn default() -> LegOpenClose
fn default() -> LegOpenClose
Returns the “default value” for a type. Read more
impl Eq for LegOpenClose
Source§impl PartialEq for LegOpenClose
impl PartialEq for LegOpenClose
impl StructuralPartialEq for LegOpenClose
Auto Trait Implementations§
impl Freeze for LegOpenClose
impl RefUnwindSafe for LegOpenClose
impl Send for LegOpenClose
impl Sync for LegOpenClose
impl Unpin for LegOpenClose
impl UnsafeUnpin for LegOpenClose
impl UnwindSafe for LegOpenClose
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