pub struct JobFlowExecutionStatusDetail {
pub creation_date_time: f64,
pub end_date_time: Option<f64>,
pub last_state_change_reason: Option<String>,
pub ready_date_time: Option<f64>,
pub start_date_time: Option<f64>,
pub state: String,
}
Expand description
Describes the status of the cluster (job flow).
Fields§
§creation_date_time: f64
The creation date and time of the job flow.
end_date_time: Option<f64>
The completion date and time of the job flow.
last_state_change_reason: Option<String>
Description of the job flow last changed state.
ready_date_time: Option<f64>
The date and time when the job flow was ready to start running bootstrap actions.
start_date_time: Option<f64>
The start date and time of the job flow.
state: String
The state of the job flow.
Trait Implementations§
Source§impl Clone for JobFlowExecutionStatusDetail
impl Clone for JobFlowExecutionStatusDetail
Source§fn clone(&self) -> JobFlowExecutionStatusDetail
fn clone(&self) -> JobFlowExecutionStatusDetail
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 JobFlowExecutionStatusDetail
impl Debug for JobFlowExecutionStatusDetail
Source§impl Default for JobFlowExecutionStatusDetail
impl Default for JobFlowExecutionStatusDetail
Source§fn default() -> JobFlowExecutionStatusDetail
fn default() -> JobFlowExecutionStatusDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobFlowExecutionStatusDetail
impl<'de> Deserialize<'de> for JobFlowExecutionStatusDetail
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 PartialEq for JobFlowExecutionStatusDetail
impl PartialEq for JobFlowExecutionStatusDetail
Source§fn eq(&self, other: &JobFlowExecutionStatusDetail) -> bool
fn eq(&self, other: &JobFlowExecutionStatusDetail) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JobFlowExecutionStatusDetail
Auto Trait Implementations§
impl Freeze for JobFlowExecutionStatusDetail
impl RefUnwindSafe for JobFlowExecutionStatusDetail
impl Send for JobFlowExecutionStatusDetail
impl Sync for JobFlowExecutionStatusDetail
impl Unpin for JobFlowExecutionStatusDetail
impl UnwindSafe for JobFlowExecutionStatusDetail
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