pub struct InstanceStatusEvent {
pub code: Option<String>,
pub description: Option<String>,
pub instance_event_id: Option<String>,
pub not_after: Option<String>,
pub not_before: Option<String>,
pub not_before_deadline: Option<String>,
}Expand description
Describes a scheduled event for an instance.
Fields§
§code: Option<String>The event code.
description: Option<String>A description of the event.
After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].
instance_event_id: Option<String>The ID of the event.
not_after: Option<String>The latest scheduled end time for the event.
not_before: Option<String>The earliest scheduled start time for the event.
not_before_deadline: Option<String>The deadline for starting the event.
Trait Implementations§
Source§impl Clone for InstanceStatusEvent
impl Clone for InstanceStatusEvent
Source§fn clone(&self) -> InstanceStatusEvent
fn clone(&self) -> InstanceStatusEvent
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 InstanceStatusEvent
impl Debug for InstanceStatusEvent
Source§impl Default for InstanceStatusEvent
impl Default for InstanceStatusEvent
Source§fn default() -> InstanceStatusEvent
fn default() -> InstanceStatusEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstanceStatusEvent
impl PartialEq for InstanceStatusEvent
impl StructuralPartialEq for InstanceStatusEvent
Auto Trait Implementations§
impl Freeze for InstanceStatusEvent
impl RefUnwindSafe for InstanceStatusEvent
impl Send for InstanceStatusEvent
impl Sync for InstanceStatusEvent
impl Unpin for InstanceStatusEvent
impl UnwindSafe for InstanceStatusEvent
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