pub struct ResolvedWorkflowAgent {
pub resolved_role: Option<String>,
pub resolved_profile: String,
pub route_source: &'static str,
}Expand description
Result of resolving a workflow step against a fleet roster.
Fields§
§resolved_role: Option<String>Fleet role declared on the step, if any.
resolved_profile: StringAgentProfile id to spawn.
route_source: &'static strHow the profile was chosen: explicit_profile, fleet_role, or
role_as_profile.
Trait Implementations§
Source§impl Clone for ResolvedWorkflowAgent
impl Clone for ResolvedWorkflowAgent
Source§fn clone(&self) -> ResolvedWorkflowAgent
fn clone(&self) -> ResolvedWorkflowAgent
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 ResolvedWorkflowAgent
impl Debug for ResolvedWorkflowAgent
impl Eq for ResolvedWorkflowAgent
Source§impl PartialEq for ResolvedWorkflowAgent
impl PartialEq for ResolvedWorkflowAgent
impl StructuralPartialEq for ResolvedWorkflowAgent
Auto Trait Implementations§
impl Freeze for ResolvedWorkflowAgent
impl RefUnwindSafe for ResolvedWorkflowAgent
impl Send for ResolvedWorkflowAgent
impl Sync for ResolvedWorkflowAgent
impl Unpin for ResolvedWorkflowAgent
impl UnsafeUnpin for ResolvedWorkflowAgent
impl UnwindSafe for ResolvedWorkflowAgent
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