pub struct RiseFallEvent {
pub trade_date: String,
pub contract_id: String,
pub direction: String,
pub times: i32,
}Expand description
Rise/fall event (trading limit) information.
Fields§
§trade_date: StringTrade date.
contract_id: StringContract ID.
direction: StringDirection (limit up/down).
times: i32Number of times.
Trait Implementations§
Source§impl Clone for RiseFallEvent
impl Clone for RiseFallEvent
Source§fn clone(&self) -> RiseFallEvent
fn clone(&self) -> RiseFallEvent
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 RiseFallEvent
impl Debug for RiseFallEvent
Source§impl<'de> Deserialize<'de> for RiseFallEvent
impl<'de> Deserialize<'de> for RiseFallEvent
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 RiseFallEvent
impl RefUnwindSafe for RiseFallEvent
impl Send for RiseFallEvent
impl Sync for RiseFallEvent
impl Unpin for RiseFallEvent
impl UnwindSafe for RiseFallEvent
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