pub struct Activate {
pub product_id: String,
pub timestamp: Decimal,
pub order_id: String,
pub stop_type: StopType,
pub size: Decimal,
pub funds: Decimal,
pub taker_fee_rate: Decimal,
pub private: bool,
pub user_id: Option<String>,
pub profile_id: Option<String>,
}
Fields§
§product_id: String
§timestamp: Decimal
§order_id: String
§stop_type: StopType
§size: Decimal
§funds: Decimal
§taker_fee_rate: Decimal
§private: bool
§user_id: Option<String>
§profile_id: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Activate
impl<'de> Deserialize<'de> for Activate
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
impl StructuralPartialEq for Activate
Auto Trait Implementations§
impl Freeze for Activate
impl RefUnwindSafe for Activate
impl Send for Activate
impl Sync for Activate
impl Unpin for Activate
impl UnwindSafe for Activate
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