#[non_exhaustive]pub struct BlockTrade {
pub symbol: Symbol,
pub id: Option<String>,
pub price: Decimal,
pub quantity: Decimal,
pub side: TradeSide,
pub timestamp: OffsetDateTime,
pub event_time: Option<OffsetDateTime>,
pub extensions: Extensions,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.symbol: Symbol§id: Option<String>§price: Decimal§quantity: Decimal§side: TradeSide§timestamp: OffsetDateTime§event_time: Option<OffsetDateTime>§extensions: ExtensionsImplementations§
Source§impl BlockTrade
impl BlockTrade
Trait Implementations§
Source§impl Clone for BlockTrade
impl Clone for BlockTrade
Source§fn clone(&self) -> BlockTrade
fn clone(&self) -> BlockTrade
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 BlockTrade
impl Debug for BlockTrade
Source§impl PartialEq for BlockTrade
impl PartialEq for BlockTrade
Source§fn eq(&self, other: &BlockTrade) -> bool
fn eq(&self, other: &BlockTrade) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlockTrade
Auto Trait Implementations§
impl Freeze for BlockTrade
impl RefUnwindSafe for BlockTrade
impl Send for BlockTrade
impl Sync for BlockTrade
impl Unpin for BlockTrade
impl UnsafeUnpin for BlockTrade
impl UnwindSafe for BlockTrade
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