pub enum RuntimeDetails {
Stop(Box<StopDetails>),
Trailing(Box<TrailingDetails>),
TwapState(Box<TwapDetails>),
LadderState(Box<LadderDetails>),
}Expand description
Type-specific runtime state.
Variants§
Stop(Box<StopDetails>)
Trailing(Box<TrailingDetails>)
TwapState(Box<TwapDetails>)
LadderState(Box<LadderDetails>)
Trait Implementations§
Source§impl Clone for RuntimeDetails
impl Clone for RuntimeDetails
Source§fn clone(&self) -> RuntimeDetails
fn clone(&self) -> RuntimeDetails
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 moreSource§impl Debug for RuntimeDetails
impl Debug for RuntimeDetails
Source§impl From<LadderDetails> for RuntimeDetails
impl From<LadderDetails> for RuntimeDetails
Source§fn from(v: LadderDetails) -> Self
fn from(v: LadderDetails) -> Self
Converts to this type from the input type.
Source§impl From<StopDetails> for RuntimeDetails
impl From<StopDetails> for RuntimeDetails
Source§fn from(v: StopDetails) -> Self
fn from(v: StopDetails) -> Self
Converts to this type from the input type.
Source§impl From<TrailingDetails> for RuntimeDetails
impl From<TrailingDetails> for RuntimeDetails
Source§fn from(v: TrailingDetails) -> Self
fn from(v: TrailingDetails) -> Self
Converts to this type from the input type.
Source§impl From<TwapDetails> for RuntimeDetails
impl From<TwapDetails> for RuntimeDetails
Source§fn from(v: TwapDetails) -> Self
fn from(v: TwapDetails) -> Self
Converts to this type from the input type.
impl Oneof for RuntimeDetails
Source§impl PartialEq for RuntimeDetails
impl PartialEq for RuntimeDetails
Source§impl Serialize for RuntimeDetails
impl Serialize for RuntimeDetails
impl StructuralPartialEq for RuntimeDetails
Auto Trait Implementations§
impl Freeze for RuntimeDetails
impl RefUnwindSafe for RuntimeDetails
impl Send for RuntimeDetails
impl Sync for RuntimeDetails
impl Unpin for RuntimeDetails
impl UnsafeUnpin for RuntimeDetails
impl UnwindSafe for RuntimeDetails
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