pub struct TradeDurationItem {
pub durations: Option<Vec<DurationItem>>,
pub trade_type: Option<TradeType>,
}
Fields§
§durations: Option<Vec<DurationItem>>
List of trade durations available for the symbols.\n
trade_type: Option<TradeType>
List of trade types available for the symbols.\n
Trait Implementations§
Source§impl Clone for TradeDurationItem
impl Clone for TradeDurationItem
Source§fn clone(&self) -> TradeDurationItem
fn clone(&self) -> TradeDurationItem
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 TradeDurationItem
impl Debug for TradeDurationItem
Source§impl<'de> Deserialize<'de> for TradeDurationItem
impl<'de> Deserialize<'de> for TradeDurationItem
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 TradeDurationItem
impl RefUnwindSafe for TradeDurationItem
impl Send for TradeDurationItem
impl Sync for TradeDurationItem
impl Unpin for TradeDurationItem
impl UnwindSafe for TradeDurationItem
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