pub struct TeamEdgeExecution {
pub id: String,
pub parent_id: Option<String>,
pub from: String,
pub to: String,
pub kind: RelationshipKind,
pub attempt: u32,
pub started_at_ms: u64,
pub finished_at_ms: Option<u64>,
pub status: TeamExecutionStatus,
pub error: Option<String>,
}Expand description
One causal relationship execution in a team invocation.
Fields§
§id: StringUnique execution identifier.
parent_id: Option<String>Parent relationship execution for nested delegation.
from: StringRelationship source member.
to: StringRelationship target member.
kind: RelationshipKindRelationship control-flow semantics.
attempt: u32One-based attempt number.
started_at_ms: u64Unix timestamp in milliseconds.
finished_at_ms: Option<u64>Unix timestamp in milliseconds when terminal.
status: TeamExecutionStatusTerminal or active state.
error: Option<String>Failure message when present.
Trait Implementations§
Source§impl Clone for TeamEdgeExecution
impl Clone for TeamEdgeExecution
Source§fn clone(&self) -> TeamEdgeExecution
fn clone(&self) -> TeamEdgeExecution
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 TeamEdgeExecution
impl Debug for TeamEdgeExecution
Source§impl<'de> Deserialize<'de> for TeamEdgeExecution
impl<'de> Deserialize<'de> for TeamEdgeExecution
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
impl Eq for TeamEdgeExecution
Source§impl JsonSchema for TeamEdgeExecution
impl JsonSchema for TeamEdgeExecution
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for TeamEdgeExecution
impl PartialEq for TeamEdgeExecution
Source§impl Serialize for TeamEdgeExecution
impl Serialize for TeamEdgeExecution
impl StructuralPartialEq for TeamEdgeExecution
Auto Trait Implementations§
impl Freeze for TeamEdgeExecution
impl RefUnwindSafe for TeamEdgeExecution
impl Send for TeamEdgeExecution
impl Sync for TeamEdgeExecution
impl Unpin for TeamEdgeExecution
impl UnsafeUnpin for TeamEdgeExecution
impl UnwindSafe for TeamEdgeExecution
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.