pub struct GetJobJob {
pub id: Uuid,
pub created_at: Timestamp,
pub duration_ms: Option<i64>,
pub ended_at: Option<Timestamp>,
pub error: Option<String>,
pub name: String,
pub status: JobStatus,
pub progress: f64,
pub recipe: Option<GetJobJobRecipe>,
pub stages: Vec<GetJobJobStages>,
pub started_at: Option<Timestamp>,
}Fields§
§id: Uuid§created_at: Timestamp§duration_ms: Option<i64>§ended_at: Option<Timestamp>§error: Option<String>§name: String§status: JobStatus§progress: f64§recipe: Option<GetJobJobRecipe>§stages: Vec<GetJobJobStages>§started_at: Option<Timestamp>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetJobJob
impl<'de> Deserialize<'de> for GetJobJob
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 GetJobJob
impl RefUnwindSafe for GetJobJob
impl Send for GetJobJob
impl Sync for GetJobJob
impl Unpin for GetJobJob
impl UnsafeUnpin for GetJobJob
impl UnwindSafe for GetJobJob
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