pub struct AmendCmd {
pub order_id: OrderId,
pub patch: AmendPatch,
}Expand description
Represents a command to amend an existing order
Fields§
§order_id: OrderIdThe ID of the order to amend
patch: AmendPatchThe patch to apply to the order
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AmendCmd
impl<'de> Deserialize<'de> for AmendCmd
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 Eq for AmendCmd
impl StructuralPartialEq for AmendCmd
Auto Trait Implementations§
impl Freeze for AmendCmd
impl RefUnwindSafe for AmendCmd
impl Send for AmendCmd
impl Sync for AmendCmd
impl Unpin for AmendCmd
impl UnsafeUnpin for AmendCmd
impl UnwindSafe for AmendCmd
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