Skip to main content

CapabilitySpec

Struct CapabilitySpec 

Source
pub struct CapabilitySpec {
Show 13 fields pub capability_id: CapabilityId, pub kind: CapabilityKind, pub source: CapabilitySource, pub namespace: CapabilityNamespace, pub version: CapabilityVersion, pub visibility: CapabilityVisibility, pub projection: ProjectionMode, pub executor_ref: Option<ExecutorRef>, pub policy_ref: PolicyRef, pub sidecar_refs: Vec<PackageSidecarRef>, pub isolation_ref: Option<PackageSidecarRef>, pub privacy: PrivacyClass, pub readiness: CapabilityReadiness,
}
Expand description

Describes the capability spec portion of a runtime package snapshot. Use it when package authors or tests need explicit package configuration; validation and activation happen in package/runtime coordinators.

Fields§

§capability_id: CapabilityId

Stable capability identifier used for package projection and executable routing.

§kind: CapabilityKind

Kind/category for this record, capability, event, or detected resource.

§source: CapabilitySource

Source label or ref for this item; it is metadata and does not fetch content by itself.

§namespace: CapabilityNamespace

Namespace that groups this capability or identifier. Use it to avoid collisions between packages, hosts, and extensions.

§version: CapabilityVersion

Version string for this capability, package, or protocol surface. Use it for compatibility checks during package or adapter resolution.

§visibility: CapabilityVisibility

Visibility class for the capability or result. Discovery and projection use it to decide what callers or models can see.

§projection: ProjectionMode

Projection controls for exposing data to a provider or subscriber. Use it to keep provider-visible data separate from private SDK state.

§executor_ref: Option<ExecutorRef>

Typed executor ref reference. Resolving or executing it is a separate policy-gated step.

§policy_ref: PolicyRef

Policy reference that must be resolved by the host or runtime before execution.

§sidecar_refs: Vec<PackageSidecarRef>

References to typed package sidecars needed by this capability.

§isolation_ref: Option<PackageSidecarRef>

Typed isolation ref reference. Resolving or executing it is a separate policy-gated step.

§privacy: PrivacyClass

Privacy class used for projection, telemetry, and raw-content access decisions.

§readiness: CapabilityReadiness

Readiness state for a capability or package feature. Launch and package validation use it to distinguish active, reserved, and blocked surfaces.

Implementations§

Source§

impl CapabilitySpec

Source

pub fn fake_tool( capability_id: impl Into<CapabilityId>, name: impl Into<String>, schema_ref: PackageSidecarRef, executor_ref: ExecutorRef, policy_ref: PolicyRef, source: SourceRef, ) -> Self

Returns fake tool for the current value. This is a read-only or data-construction helper unless the method body explicitly calls a port or store.

Source

pub fn reserved_inactive( capability_id: impl Into<CapabilityId>, kind: CapabilityKind, policy_ref: PolicyRef, source: SourceRef, ) -> Self

Builds the reserved inactive value with the documented defaults. This is data-only and does not perform I/O, call host ports, append journals, publish events, or start processes.

Source

pub fn provider_visible(&self) -> bool

Computes or returns provider visible for the package::capability contract without external I/O or side effects.

Source

pub fn executable(&self) -> bool

Returns whether executable applies for this state. This is data-only and does not perform I/O, call host ports, append journals, publish events, or start processes.

Source

pub fn project_for_provider( &self, ) -> Result<Option<ProviderCapabilityProjection>, AgentError>

Computes or returns project for provider for the package::capability contract without external I/O or side effects.

Source

pub fn executable_route( &self, ) -> Result<Option<ExecutableCapabilityRoute>, AgentError>

Computes or returns executable route for the package::capability contract without external I/O or side effects.

Source

pub fn validate(&self) -> Result<(), AgentError>

Validates the package::capability invariants and returns a typed error on failure. Validation is pure and does not perform I/O, dispatch, journal appends, or adapter calls.

Trait Implementations§

Source§

impl Clone for CapabilitySpec

Source§

fn clone(&self) -> CapabilitySpec

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CapabilitySpec

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for CapabilitySpec

Source§

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 CapabilitySpec

Source§

fn eq(&self, other: &CapabilitySpec) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for CapabilitySpec

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for CapabilitySpec

Source§

impl StructuralPartialEq for CapabilitySpec

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,