pub struct TickerSubscription {
pub channel: String,
pub symbol: Vec<String>,
pub event_trigger: Option<EventTrigger>,
pub snapshot: Option<bool>,
}
Fields§
§channel: String
§symbol: Vec<String>
§event_trigger: Option<EventTrigger>
§snapshot: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for TickerSubscription
impl Clone for TickerSubscription
Source§fn clone(&self) -> TickerSubscription
fn clone(&self) -> TickerSubscription
Returns a copy 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 TickerSubscription
impl Debug for TickerSubscription
Auto Trait Implementations§
impl Freeze for TickerSubscription
impl RefUnwindSafe for TickerSubscription
impl Send for TickerSubscription
impl Sync for TickerSubscription
impl Unpin for TickerSubscription
impl UnwindSafe for TickerSubscription
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