pub struct StatusProduct {
pub product_type: String,
pub id: String,
pub base_currency: String,
pub quote_currency: String,
pub base_increment: String,
pub quote_increment: String,
pub display_name: String,
pub status: String,
pub status_message: String,
pub min_market_funds: String,
}Fields§
§product_type: String§id: String§base_currency: String§quote_currency: String§base_increment: String§quote_increment: String§display_name: String§status: String§status_message: String§min_market_funds: StringTrait Implementations§
Source§impl Clone for StatusProduct
impl Clone for StatusProduct
Source§fn clone(&self) -> StatusProduct
fn clone(&self) -> StatusProduct
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 StatusProduct
impl Debug for StatusProduct
Source§impl<'de> Deserialize<'de> for StatusProduct
impl<'de> Deserialize<'de> for StatusProduct
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
Auto Trait Implementations§
impl Freeze for StatusProduct
impl RefUnwindSafe for StatusProduct
impl Send for StatusProduct
impl Sync for StatusProduct
impl Unpin for StatusProduct
impl UnsafeUnpin for StatusProduct
impl UnwindSafe for StatusProduct
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