pub struct TradeAllocations {
pub amount: Option<f64>,
pub client_info: Option<TradeAllocationsClientInfo>,
pub user_id: Option<i64>,
}Fields§
§amount: Option<f64>§client_info: Option<TradeAllocationsClientInfo>§user_id: Option<i64>Trait Implementations§
Source§impl Clone for TradeAllocations
impl Clone for TradeAllocations
Source§fn clone(&self) -> TradeAllocations
fn clone(&self) -> TradeAllocations
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 TradeAllocations
impl Debug for TradeAllocations
Source§impl Default for TradeAllocations
impl Default for TradeAllocations
Source§fn default() -> TradeAllocations
fn default() -> TradeAllocations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradeAllocations
impl<'de> Deserialize<'de> for TradeAllocations
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 TradeAllocations
impl PartialEq for TradeAllocations
Source§impl Serialize for TradeAllocations
impl Serialize for TradeAllocations
impl StructuralPartialEq for TradeAllocations
Auto Trait Implementations§
impl Freeze for TradeAllocations
impl RefUnwindSafe for TradeAllocations
impl Send for TradeAllocations
impl Sync for TradeAllocations
impl Unpin for TradeAllocations
impl UnwindSafe for TradeAllocations
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