pub struct CapabilityReadinessOutput {Show 13 fields
pub workflow_id: String,
pub runnable: bool,
pub resolved: Vec<CapabilityResolution>,
pub missing_required_capabilities: Vec<String>,
pub unbound_capabilities: Vec<String>,
pub missing_optional_capabilities: Vec<String>,
pub missing_servers: Vec<String>,
pub disconnected_servers: Vec<String>,
pub auth_pending_tools: Vec<String>,
pub missing_secret_refs: Vec<String>,
pub considered_bindings: usize,
pub recommendations: Vec<String>,
pub blocking_issues: Vec<CapabilityBlockingIssue>,
}Fields§
§workflow_id: String§runnable: bool§resolved: Vec<CapabilityResolution>§missing_required_capabilities: Vec<String>§unbound_capabilities: Vec<String>§missing_optional_capabilities: Vec<String>§missing_servers: Vec<String>§disconnected_servers: Vec<String>§auth_pending_tools: Vec<String>§missing_secret_refs: Vec<String>§considered_bindings: usize§recommendations: Vec<String>§blocking_issues: Vec<CapabilityBlockingIssue>Trait Implementations§
Source§impl Clone for CapabilityReadinessOutput
impl Clone for CapabilityReadinessOutput
Source§fn clone(&self) -> CapabilityReadinessOutput
fn clone(&self) -> CapabilityReadinessOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 CapabilityReadinessOutput
impl Debug for CapabilityReadinessOutput
Source§impl<'de> Deserialize<'de> for CapabilityReadinessOutput
impl<'de> Deserialize<'de> for CapabilityReadinessOutput
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 CapabilityReadinessOutput
impl RefUnwindSafe for CapabilityReadinessOutput
impl Send for CapabilityReadinessOutput
impl Sync for CapabilityReadinessOutput
impl Unpin for CapabilityReadinessOutput
impl UnsafeUnpin for CapabilityReadinessOutput
impl UnwindSafe for CapabilityReadinessOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more