pub struct FleetRun {
pub id: FleetRunId,
pub name: String,
pub status: FleetRunStatus,
pub task_specs: Vec<FleetTaskSpec>,
pub worker_specs: Vec<FleetWorkerSpec>,
pub labels: BTreeMap<String, String>,
pub security_policy: Option<FleetSecurityPolicy>,
pub created_at: String,
pub updated_at: Option<String>,
pub completed_at: Option<String>,
}Expand description
Top-level fleet run handle.
Fields§
§id: FleetRunId§name: String§status: FleetRunStatus§task_specs: Vec<FleetTaskSpec>§worker_specs: Vec<FleetWorkerSpec>§labels: BTreeMap<String, String>§security_policy: Option<FleetSecurityPolicy>§created_at: String§updated_at: Option<String>§completed_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for FleetRun
impl<'de> Deserialize<'de> for FleetRun
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 FleetRun
impl RefUnwindSafe for FleetRun
impl Send for FleetRun
impl Sync for FleetRun
impl Unpin for FleetRun
impl UnsafeUnpin for FleetRun
impl UnwindSafe for FleetRun
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