pub enum UpdateSpeed {
Ms100,
Ms1000,
}Expand description
Update speed for order book streams.
Variants§
Ms100
100 millisecond updates (faster, more bandwidth)
Ms1000
1000 millisecond updates (slower, less bandwidth)
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSpeed
impl Clone for UpdateSpeed
Source§fn clone(&self) -> UpdateSpeed
fn clone(&self) -> UpdateSpeed
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 UpdateSpeed
impl Debug for UpdateSpeed
Source§impl Default for UpdateSpeed
impl Default for UpdateSpeed
Source§fn default() -> UpdateSpeed
fn default() -> UpdateSpeed
Returns the “default value” for a type. Read more
Source§impl Hash for UpdateSpeed
impl Hash for UpdateSpeed
Source§impl PartialEq for UpdateSpeed
impl PartialEq for UpdateSpeed
impl Copy for UpdateSpeed
impl Eq for UpdateSpeed
impl StructuralPartialEq for UpdateSpeed
Auto Trait Implementations§
impl Freeze for UpdateSpeed
impl RefUnwindSafe for UpdateSpeed
impl Send for UpdateSpeed
impl Sync for UpdateSpeed
impl Unpin for UpdateSpeed
impl UnsafeUnpin for UpdateSpeed
impl UnwindSafe for UpdateSpeed
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