pub struct CancellationEvent {
pub event_time: Option<DateTime<Utc>>,
}Expand description
Details of when the order was canceled.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_time: Option<DateTime<Utc>>The time when the order was canceled.
Trait Implementations§
Source§impl Clone for CancellationEvent
impl Clone for CancellationEvent
Source§fn clone(&self) -> CancellationEvent
fn clone(&self) -> CancellationEvent
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 CancellationEvent
impl Debug for CancellationEvent
Source§impl Default for CancellationEvent
impl Default for CancellationEvent
Source§fn default() -> CancellationEvent
fn default() -> CancellationEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CancellationEvent
impl<'de> Deserialize<'de> for CancellationEvent
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 Serialize for CancellationEvent
impl Serialize for CancellationEvent
impl Part for CancellationEvent
Auto Trait Implementations§
impl Freeze for CancellationEvent
impl RefUnwindSafe for CancellationEvent
impl Send for CancellationEvent
impl Sync for CancellationEvent
impl Unpin for CancellationEvent
impl UnwindSafe for CancellationEvent
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