pub struct VolumeStatusEvent {
pub description: Option<String>,
pub event_id: Option<String>,
pub event_type: Option<String>,
pub instance_id: Option<String>,
pub not_after: Option<String>,
pub not_before: Option<String>,
}Expand description
Describes a volume status event.
Fields§
§description: Option<String>A description of the event.
event_id: Option<String>The ID of this event.
event_type: Option<String>The type of this event.
instance_id: Option<String>The ID of the instance associated with the event.
not_after: Option<String>The latest end time of the event.
not_before: Option<String>The earliest start time of the event.
Trait Implementations§
Source§impl Clone for VolumeStatusEvent
impl Clone for VolumeStatusEvent
Source§fn clone(&self) -> VolumeStatusEvent
fn clone(&self) -> VolumeStatusEvent
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 VolumeStatusEvent
impl Debug for VolumeStatusEvent
Source§impl Default for VolumeStatusEvent
impl Default for VolumeStatusEvent
Source§fn default() -> VolumeStatusEvent
fn default() -> VolumeStatusEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for VolumeStatusEvent
impl PartialEq for VolumeStatusEvent
impl StructuralPartialEq for VolumeStatusEvent
Auto Trait Implementations§
impl Freeze for VolumeStatusEvent
impl RefUnwindSafe for VolumeStatusEvent
impl Send for VolumeStatusEvent
impl Sync for VolumeStatusEvent
impl Unpin for VolumeStatusEvent
impl UnwindSafe for VolumeStatusEvent
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