pub struct Trade<'a> {
pub time: OffsetDateTime,
pub price: Decimal,
pub volume: i64,
pub trade_type: &'a str,
}Fields§
§time: OffsetDateTime§price: Decimal§volume: i64§trade_type: &'a strTrait Implementations§
impl<'a> Copy for Trade<'a>
impl<'a> Eq for Trade<'a>
impl<'a> StructuralPartialEq for Trade<'a>
Auto Trait Implementations§
impl<'a> Freeze for Trade<'a>
impl<'a> RefUnwindSafe for Trade<'a>
impl<'a> Send for Trade<'a>
impl<'a> Sync for Trade<'a>
impl<'a> Unpin for Trade<'a>
impl<'a> UnwindSafe for Trade<'a>
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