pub struct BvolResponse {
pub timestamp: Timestamp,
pub price: f64,
pub symbol: String,
pub side: String,
pub size: u64,
pub tick_direction: String,
pub trd_type: String,
}Fields§
§timestamp: Timestamp§price: f64§symbol: String§side: String§size: u64§tick_direction: String§trd_type: StringImplementations§
Trait Implementations§
Source§impl Clone for BvolResponse
impl Clone for BvolResponse
Source§fn clone(&self) -> BvolResponse
fn clone(&self) -> BvolResponse
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 BvolResponse
impl Debug for BvolResponse
Source§impl Default for BvolResponse
impl Default for BvolResponse
Source§fn default() -> BvolResponse
fn default() -> BvolResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BvolResponse
impl<'de> Deserialize<'de> for BvolResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BvolResponse> for BvolPoint
impl From<BvolResponse> for BvolPoint
Source§fn from(r: BvolResponse) -> Self
fn from(r: BvolResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BvolResponse
impl RefUnwindSafe for BvolResponse
impl Send for BvolResponse
impl Sync for BvolResponse
impl Unpin for BvolResponse
impl UnwindSafe for BvolResponse
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