#[non_exhaustive]pub struct MiniTicker {
pub symbol: Symbol,
pub close: Decimal,
pub open: Decimal,
pub high: Decimal,
pub low: Decimal,
pub volume_base: Decimal,
pub volume_quote: Decimal,
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§close: Decimal§open: Decimal§high: Decimal§low: Decimal§volume_base: Decimal§volume_quote: Decimal§event_time: Option<OffsetDateTime>§extensions: ExtensionsImplementations§
Source§impl MiniTicker
impl MiniTicker
Trait Implementations§
Source§impl Clone for MiniTicker
impl Clone for MiniTicker
Source§fn clone(&self) -> MiniTicker
fn clone(&self) -> MiniTicker
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 MiniTicker
impl Debug for MiniTicker
Source§impl PartialEq for MiniTicker
impl PartialEq for MiniTicker
Source§fn eq(&self, other: &MiniTicker) -> bool
fn eq(&self, other: &MiniTicker) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MiniTicker
Auto Trait Implementations§
impl Freeze for MiniTicker
impl RefUnwindSafe for MiniTicker
impl Send for MiniTicker
impl Sync for MiniTicker
impl Unpin for MiniTicker
impl UnsafeUnpin for MiniTicker
impl UnwindSafe for MiniTicker
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