pub struct LatestBarResponse {
pub symbol: String,
pub bar: Bar,
pub currency: Option<Currency>,
}Fields§
§symbol: String§bar: Bar§currency: Option<Currency>Trait Implementations§
Source§impl Clone for LatestBarResponse
impl Clone for LatestBarResponse
Source§fn clone(&self) -> LatestBarResponse
fn clone(&self) -> LatestBarResponse
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 LatestBarResponse
impl Debug for LatestBarResponse
Source§impl Default for LatestBarResponse
impl Default for LatestBarResponse
Source§fn default() -> LatestBarResponse
fn default() -> LatestBarResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LatestBarResponse
impl<'de> Deserialize<'de> for LatestBarResponse
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 PartialEq for LatestBarResponse
impl PartialEq for LatestBarResponse
impl StructuralPartialEq for LatestBarResponse
Auto Trait Implementations§
impl Freeze for LatestBarResponse
impl RefUnwindSafe for LatestBarResponse
impl Send for LatestBarResponse
impl Sync for LatestBarResponse
impl Unpin for LatestBarResponse
impl UnwindSafe for LatestBarResponse
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