pub struct RunShort {
pub id: String,
pub act_id: String,
pub actor_task_id: Option<String>,
pub started_at: DateTime<Utc>,
pub finished_at: Option<DateTime<Utc>>,
pub status: ActorJobStatus,
pub build_id: Option<String>,
}Expand description
Compact Run representation returned by list endpoints.
Fields§
§id: String§act_id: String§actor_task_id: Option<String>§started_at: DateTime<Utc>§finished_at: Option<DateTime<Utc>>§status: ActorJobStatus§build_id: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunShort
impl<'de> Deserialize<'de> for RunShort
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 RunShort
impl RefUnwindSafe for RunShort
impl Send for RunShort
impl Sync for RunShort
impl Unpin for RunShort
impl UnsafeUnpin for RunShort
impl UnwindSafe for RunShort
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