pub struct InstanceDeletedEvent {
pub instance_name: String,
pub timestamp: SystemTime,
}Expand description
Event emitted when an instance is deleted.
Fields§
§instance_name: String§timestamp: SystemTimeTrait Implementations§
Source§impl Clone for InstanceDeletedEvent
impl Clone for InstanceDeletedEvent
Source§fn clone(&self) -> InstanceDeletedEvent
fn clone(&self) -> InstanceDeletedEvent
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 InstanceDeletedEvent
impl Debug for InstanceDeletedEvent
Source§impl<'de> Deserialize<'de> for InstanceDeletedEvent
impl<'de> Deserialize<'de> for InstanceDeletedEvent
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 InstanceDeletedEvent
impl RefUnwindSafe for InstanceDeletedEvent
impl Send for InstanceDeletedEvent
impl Sync for InstanceDeletedEvent
impl Unpin for InstanceDeletedEvent
impl UnsafeUnpin for InstanceDeletedEvent
impl UnwindSafe for InstanceDeletedEvent
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