pub struct LifecycleEventRecord {
pub vm_id: String,
pub state: LifecycleState,
pub detail: Option<String>,
}Fields§
§vm_id: String§state: LifecycleState§detail: Option<String>Trait Implementations§
Source§impl Clone for LifecycleEventRecord
impl Clone for LifecycleEventRecord
Source§fn clone(&self) -> LifecycleEventRecord
fn clone(&self) -> LifecycleEventRecord
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 LifecycleEventRecord
impl Debug for LifecycleEventRecord
impl Eq for LifecycleEventRecord
Source§impl PartialEq for LifecycleEventRecord
impl PartialEq for LifecycleEventRecord
Source§fn eq(&self, other: &LifecycleEventRecord) -> bool
fn eq(&self, other: &LifecycleEventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LifecycleEventRecord
Auto Trait Implementations§
impl Freeze for LifecycleEventRecord
impl RefUnwindSafe for LifecycleEventRecord
impl Send for LifecycleEventRecord
impl Sync for LifecycleEventRecord
impl Unpin for LifecycleEventRecord
impl UnsafeUnpin for LifecycleEventRecord
impl UnwindSafe for LifecycleEventRecord
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