pub struct ProcessedEvent {
pub event_time: Option<DateTime<Utc>>,
}Expand description
Details of when the order was processed.
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 processed.
Trait Implementations§
Source§impl Clone for ProcessedEvent
impl Clone for ProcessedEvent
Source§fn clone(&self) -> ProcessedEvent
fn clone(&self) -> ProcessedEvent
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 ProcessedEvent
impl Debug for ProcessedEvent
Source§impl Default for ProcessedEvent
impl Default for ProcessedEvent
Source§fn default() -> ProcessedEvent
fn default() -> ProcessedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessedEvent
impl<'de> Deserialize<'de> for ProcessedEvent
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 ProcessedEvent
impl Serialize for ProcessedEvent
impl Part for ProcessedEvent
Auto Trait Implementations§
impl Freeze for ProcessedEvent
impl RefUnwindSafe for ProcessedEvent
impl Send for ProcessedEvent
impl Sync for ProcessedEvent
impl Unpin for ProcessedEvent
impl UnwindSafe for ProcessedEvent
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