pub struct ReferencePriceResponseResult {
pub symbol: Option<String>,
pub reference_price: Option<String>,
pub timestamp: Option<i64>,
pub code: Option<i64>,
pub msg: Option<String>,
}Fields§
§symbol: Option<String>§reference_price: Option<String>§timestamp: Option<i64>§code: Option<i64>§msg: Option<String>Implementations§
Source§impl ReferencePriceResponseResult
impl ReferencePriceResponseResult
pub fn new() -> ReferencePriceResponseResult
Trait Implementations§
Source§impl Clone for ReferencePriceResponseResult
impl Clone for ReferencePriceResponseResult
Source§fn clone(&self) -> ReferencePriceResponseResult
fn clone(&self) -> ReferencePriceResponseResult
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 ReferencePriceResponseResult
impl Debug for ReferencePriceResponseResult
Source§impl Default for ReferencePriceResponseResult
impl Default for ReferencePriceResponseResult
Source§fn default() -> ReferencePriceResponseResult
fn default() -> ReferencePriceResponseResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReferencePriceResponseResult
impl<'de> Deserialize<'de> for ReferencePriceResponseResult
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 ReferencePriceResponseResult
impl PartialEq for ReferencePriceResponseResult
Source§fn eq(&self, other: &ReferencePriceResponseResult) -> bool
fn eq(&self, other: &ReferencePriceResponseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReferencePriceResponseResult
Auto Trait Implementations§
impl Freeze for ReferencePriceResponseResult
impl RefUnwindSafe for ReferencePriceResponseResult
impl Send for ReferencePriceResponseResult
impl Sync for ReferencePriceResponseResult
impl Unpin for ReferencePriceResponseResult
impl UnsafeUnpin for ReferencePriceResponseResult
impl UnwindSafe for ReferencePriceResponseResult
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