pub struct ModifyUpdate {
pub modify_id: Uuid,
pub order_id: OrderId,
pub timestamp: i64,
pub timestamp_ns: u32,
pub status: Option<ModifyStatus>,
pub reject_message: Option<String>,
}Fields§
§modify_id: Uuid§order_id: OrderId§timestamp: i64§timestamp_ns: u32§status: Option<ModifyStatus>§reject_message: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ModifyUpdate
impl Clone for ModifyUpdate
Source§fn clone(&self) -> ModifyUpdate
fn clone(&self) -> ModifyUpdate
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 ModifyUpdate
impl Debug for ModifyUpdate
Source§impl<'de> Deserialize<'de> for ModifyUpdate
impl<'de> Deserialize<'de> for ModifyUpdate
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
Auto Trait Implementations§
impl Freeze for ModifyUpdate
impl RefUnwindSafe for ModifyUpdate
impl Send for ModifyUpdate
impl Sync for ModifyUpdate
impl Unpin for ModifyUpdate
impl UnwindSafe for ModifyUpdate
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