pub struct StateTimeline {
pub states: Option<Vec<StateMetadata>>,
}Expand description
The timeline of the pending states for a resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§states: Option<Vec<StateMetadata>>Output only. The state and activation time details of the resource state.
Trait Implementations§
Source§impl Clone for StateTimeline
impl Clone for StateTimeline
Source§fn clone(&self) -> StateTimeline
fn clone(&self) -> StateTimeline
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 StateTimeline
impl Debug for StateTimeline
Source§impl Default for StateTimeline
impl Default for StateTimeline
Source§fn default() -> StateTimeline
fn default() -> StateTimeline
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StateTimeline
impl<'de> Deserialize<'de> for StateTimeline
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
Source§impl Serialize for StateTimeline
impl Serialize for StateTimeline
impl Part for StateTimeline
Auto Trait Implementations§
impl Freeze for StateTimeline
impl RefUnwindSafe for StateTimeline
impl Send for StateTimeline
impl Sync for StateTimeline
impl Unpin for StateTimeline
impl UnwindSafe for StateTimeline
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