pub struct HostNeedsAgentState {
pub skill_name: String,
pub run_id: String,
pub requested_path: Option<String>,
pub resolved_path: Option<String>,
pub selected_runner: Option<String>,
pub requests: Vec<ResolutionRequest>,
pub step_ids: Option<Vec<String>>,
pub step_labels: Option<Vec<String>>,
pub lineage: Option<HostRunLineage>,
}Fields§
§skill_name: String§run_id: String§requested_path: Option<String>§resolved_path: Option<String>§selected_runner: Option<String>§requests: Vec<ResolutionRequest>§step_ids: Option<Vec<String>>§step_labels: Option<Vec<String>>§lineage: Option<HostRunLineage>Trait Implementations§
Source§impl Clone for HostNeedsAgentState
impl Clone for HostNeedsAgentState
Source§fn clone(&self) -> HostNeedsAgentState
fn clone(&self) -> HostNeedsAgentState
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 HostNeedsAgentState
impl Debug for HostNeedsAgentState
Source§impl<'de> Deserialize<'de> for HostNeedsAgentState
impl<'de> Deserialize<'de> for HostNeedsAgentState
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 HostNeedsAgentState
impl PartialEq for HostNeedsAgentState
Source§fn eq(&self, other: &HostNeedsAgentState) -> bool
fn eq(&self, other: &HostNeedsAgentState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HostNeedsAgentState
impl Serialize for HostNeedsAgentState
impl StructuralPartialEq for HostNeedsAgentState
Auto Trait Implementations§
impl Freeze for HostNeedsAgentState
impl RefUnwindSafe for HostNeedsAgentState
impl Send for HostNeedsAgentState
impl Sync for HostNeedsAgentState
impl Unpin for HostNeedsAgentState
impl UnsafeUnpin for HostNeedsAgentState
impl UnwindSafe for HostNeedsAgentState
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