pub struct ModifyOrder {
pub order_id: Hash,
pub symbol: String,
pub amount: f64,
pub meta: ActionMeta,
}Expand description
Update order: changing order size
Fields§
§order_id: Hash§symbol: String§amount: f64§meta: ActionMetaTrait Implementations§
Source§impl Clone for ModifyOrder
impl Clone for ModifyOrder
Source§fn clone(&self) -> ModifyOrder
fn clone(&self) -> ModifyOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ModifyOrder
impl Debug for ModifyOrder
Source§impl<'de> Deserialize<'de> for ModifyOrder
impl<'de> Deserialize<'de> for ModifyOrder
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 From<ModifyOrder> for Action
impl From<ModifyOrder> for Action
Source§fn from(o: ModifyOrder) -> Self
fn from(o: ModifyOrder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ModifyOrder
impl RefUnwindSafe for ModifyOrder
impl Send for ModifyOrder
impl Sync for ModifyOrder
impl Unpin for ModifyOrder
impl UnsafeUnpin for ModifyOrder
impl UnwindSafe for ModifyOrder
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