pub struct ProductStatus {
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,
}Expand description
Product status information.
Fields§
§product_type: StringProduct type.
id: StringProduct ID.
base_currency: StringBase currency symbol.
quote_currency: StringQuote currency symbol.
base_increment: StringMinimum base increment.
quote_increment: StringMinimum quote increment.
display_name: StringDisplay name.
status: StringProduct status.
status_message: StringAdditional status message.
min_market_funds: StringMinimum market funds.
Trait Implementations§
Source§impl Clone for ProductStatus
impl Clone for ProductStatus
Source§fn clone(&self) -> ProductStatus
fn clone(&self) -> ProductStatus
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 ProductStatus
impl Debug for ProductStatus
Source§impl<'de> Deserialize<'de> for ProductStatus
impl<'de> Deserialize<'de> for ProductStatus
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 ProductStatus
impl RefUnwindSafe for ProductStatus
impl Send for ProductStatus
impl Sync for ProductStatus
impl Unpin for ProductStatus
impl UnwindSafe for ProductStatus
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