pub struct CancelTeamRunResponse {
pub cancelled: bool,
pub team_run_id: String,
pub cancelled_count: i64,
pub orchestrator_stopped: bool,
}Expand description
CancelTeamRunResponse model.
Fields§
§cancelled: bool§team_run_id: String§cancelled_count: i64Child runs actually stopped. Zero is normal for a run whose children had already finished.
orchestrator_stopped: boolFalse when no orchestration loop was in flight in this process — the run had already settled, or it belongs to another replica.
Trait Implementations§
Source§impl Clone for CancelTeamRunResponse
impl Clone for CancelTeamRunResponse
Source§fn clone(&self) -> CancelTeamRunResponse
fn clone(&self) -> CancelTeamRunResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CancelTeamRunResponse
impl Debug for CancelTeamRunResponse
Source§impl Default for CancelTeamRunResponse
impl Default for CancelTeamRunResponse
Source§fn default() -> CancelTeamRunResponse
fn default() -> CancelTeamRunResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CancelTeamRunResponse
impl<'de> Deserialize<'de> for CancelTeamRunResponse
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 CancelTeamRunResponse
impl PartialEq for CancelTeamRunResponse
Source§impl Serialize for CancelTeamRunResponse
impl Serialize for CancelTeamRunResponse
impl StructuralPartialEq for CancelTeamRunResponse
Auto Trait Implementations§
impl Freeze for CancelTeamRunResponse
impl RefUnwindSafe for CancelTeamRunResponse
impl Send for CancelTeamRunResponse
impl Sync for CancelTeamRunResponse
impl Unpin for CancelTeamRunResponse
impl UnsafeUnpin for CancelTeamRunResponse
impl UnwindSafe for CancelTeamRunResponse
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