pub struct DroppedEvent {
pub id: String,
pub event_type: String,
pub time: DateTime<Utc>,
pub attributes: Vec<(String, String)>,
}Expand description
A dropped event, summarized for a “this is what the recipe deletes” preview — machine cleaning must stay human-inspectable.
Fields§
§id: String§event_type: String§time: DateTime<Utc>§attributes: Vec<(String, String)>(name, value as text) pairs.
Trait Implementations§
Source§impl Clone for DroppedEvent
impl Clone for DroppedEvent
Source§fn clone(&self) -> DroppedEvent
fn clone(&self) -> DroppedEvent
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 DroppedEvent
impl Debug for DroppedEvent
Auto Trait Implementations§
impl Freeze for DroppedEvent
impl RefUnwindSafe for DroppedEvent
impl Send for DroppedEvent
impl Sync for DroppedEvent
impl Unpin for DroppedEvent
impl UnsafeUnpin for DroppedEvent
impl UnwindSafe for DroppedEvent
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