pub struct ApiTradingStatusData {
pub is_locked: bool,
pub planned_recover_time: Option<u64>,
pub trigger_condition: Value,
pub update_time: u64,
}Expand description
API trading status data.
Fields§
§is_locked: boolIs locked.
planned_recover_time: Option<u64>Planned recovery time (if locked).
trigger_condition: ValueTrigger condition.
update_time: u64Update time.
Trait Implementations§
Source§impl Clone for ApiTradingStatusData
impl Clone for ApiTradingStatusData
Source§fn clone(&self) -> ApiTradingStatusData
fn clone(&self) -> ApiTradingStatusData
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 ApiTradingStatusData
impl Debug for ApiTradingStatusData
Source§impl<'de> Deserialize<'de> for ApiTradingStatusData
impl<'de> Deserialize<'de> for ApiTradingStatusData
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
Auto Trait Implementations§
impl Freeze for ApiTradingStatusData
impl RefUnwindSafe for ApiTradingStatusData
impl Send for ApiTradingStatusData
impl Sync for ApiTradingStatusData
impl Unpin for ApiTradingStatusData
impl UnwindSafe for ApiTradingStatusData
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