pub struct StatusData {
pub job_id: String,
pub state: String,
pub exit_code: Option<i32>,
pub created_at: String,
pub started_at: Option<String>,
pub finished_at: Option<String>,
}Expand description
Response for status command.
Fields§
§job_id: String§state: String§exit_code: Option<i32>§created_at: StringRFC 3339 timestamp when the job was created (always present).
started_at: Option<String>RFC 3339 timestamp when the job started executing; absent for created state.
finished_at: Option<String>Trait Implementations§
Source§impl Debug for StatusData
impl Debug for StatusData
Source§impl<'de> Deserialize<'de> for StatusData
impl<'de> Deserialize<'de> for StatusData
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
Auto Trait Implementations§
impl Freeze for StatusData
impl RefUnwindSafe for StatusData
impl Send for StatusData
impl Sync for StatusData
impl Unpin for StatusData
impl UnsafeUnpin for StatusData
impl UnwindSafe for StatusData
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