pub struct ExecutionResponseBaseDetails {
pub side: Side,
pub base_amount: String,
pub base_asset_id: String,
pub base_asset_rail: Option<TransferRail>,
pub quote_asset_id: String,
pub quote_asset_rail: Option<TransferRail>,
}Fields§
§side: SideSide of the order
base_amount: StringAmount to convert
base_asset_id: StringSource asset identifier
base_asset_rail: Option<TransferRail>§quote_asset_id: StringTarget asset identifier
quote_asset_rail: Option<TransferRail>Implementations§
Trait Implementations§
Source§impl Clone for ExecutionResponseBaseDetails
impl Clone for ExecutionResponseBaseDetails
Source§fn clone(&self) -> ExecutionResponseBaseDetails
fn clone(&self) -> ExecutionResponseBaseDetails
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 ExecutionResponseBaseDetails
impl Debug for ExecutionResponseBaseDetails
Source§impl Default for ExecutionResponseBaseDetails
impl Default for ExecutionResponseBaseDetails
Source§fn default() -> ExecutionResponseBaseDetails
fn default() -> ExecutionResponseBaseDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionResponseBaseDetails
impl<'de> Deserialize<'de> for ExecutionResponseBaseDetails
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 ExecutionResponseBaseDetails
impl PartialEq for ExecutionResponseBaseDetails
Source§fn eq(&self, other: &ExecutionResponseBaseDetails) -> bool
fn eq(&self, other: &ExecutionResponseBaseDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionResponseBaseDetails
Auto Trait Implementations§
impl Freeze for ExecutionResponseBaseDetails
impl RefUnwindSafe for ExecutionResponseBaseDetails
impl Send for ExecutionResponseBaseDetails
impl Sync for ExecutionResponseBaseDetails
impl Unpin for ExecutionResponseBaseDetails
impl UnwindSafe for ExecutionResponseBaseDetails
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