pub struct WalletEventDetails {
pub price: Option<String>,
pub quantity: Option<String>,
pub quantity_filled: Option<String>,
pub outcome: Option<String>,
pub quote_type: Option<String>,
}Expand description
Details from a wallet event’s details object (present on transaction events)
Fields§
§price: Option<String>Fill price (e.g., “0.290”)
quantity: Option<String>Order quantity (e.g., “5.000”)
quantity_filled: Option<String>Quantity filled (e.g., “5.000”)
outcome: Option<String>Outcome side (e.g., “YES” or “NO”)
quote_type: Option<String>Quote type (e.g., “ASK” or “BID”)
Trait Implementations§
Source§impl Clone for WalletEventDetails
impl Clone for WalletEventDetails
Source§fn clone(&self) -> WalletEventDetails
fn clone(&self) -> WalletEventDetails
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 WalletEventDetails
impl Debug for WalletEventDetails
Source§impl Default for WalletEventDetails
impl Default for WalletEventDetails
Source§fn default() -> WalletEventDetails
fn default() -> WalletEventDetails
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WalletEventDetails
impl RefUnwindSafe for WalletEventDetails
impl Send for WalletEventDetails
impl Sync for WalletEventDetails
impl Unpin for WalletEventDetails
impl UnwindSafe for WalletEventDetails
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more