pub struct AgentProviderCapability {
pub launch_variant: Option<String>,
pub resolved_model: Option<String>,
pub effective_tools: Vec<String>,
pub capability_snapshot_digest: Option<BindingDigest>,
}Expand description
One effective capability advertised by an execution-environment provider. Operator manifests normally publish one entry per wrapper variant.
Fields§
§launch_variant: Option<String>Platform launch variant this capability serves. None is reserved
for backends without a variant axis.
resolved_model: Option<String>Effective model selected by the provider.
effective_tools: Vec<String>Effective tool grant enforced by the provider.
capability_snapshot_digest: Option<BindingDigest>Optional digest of the provider-observed capability snapshot.
Trait Implementations§
Source§impl Clone for AgentProviderCapability
impl Clone for AgentProviderCapability
Source§fn clone(&self) -> AgentProviderCapability
fn clone(&self) -> AgentProviderCapability
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 AgentProviderCapability
impl Debug for AgentProviderCapability
Source§impl<'de> Deserialize<'de> for AgentProviderCapability
impl<'de> Deserialize<'de> for AgentProviderCapability
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 AgentProviderCapability
Source§impl JsonSchema for AgentProviderCapability
impl JsonSchema for AgentProviderCapability
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 AgentProviderCapability
impl PartialEq for AgentProviderCapability
Source§impl Serialize for AgentProviderCapability
impl Serialize for AgentProviderCapability
impl StructuralPartialEq for AgentProviderCapability
Auto Trait Implementations§
impl Freeze for AgentProviderCapability
impl RefUnwindSafe for AgentProviderCapability
impl Send for AgentProviderCapability
impl Sync for AgentProviderCapability
impl Unpin for AgentProviderCapability
impl UnsafeUnpin for AgentProviderCapability
impl UnwindSafe for AgentProviderCapability
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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