Skip to main content

ExtensionPackageCapability

Struct ExtensionPackageCapability 

Source
pub struct ExtensionPackageCapability {
    pub capability_id: CapabilityId,
    pub kind: CapabilityKind,
    pub source: CapabilitySource,
    pub namespace: CapabilityNamespace,
    pub version: CapabilityVersion,
    pub visibility: CapabilityVisibility,
    pub projection: ProjectionMode,
    pub policy_ref: PolicyRef,
    pub sidecar_refs: Vec<PackageSidecarRef>,
    pub privacy: PrivacyClass,
    pub readiness: CapabilityReadiness,
}
Expand description

Describes the extension package capability 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.

§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.

§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.

Trait Implementations§

Source§

impl Clone for ExtensionPackageCapability

Source§

fn clone(&self) -> ExtensionPackageCapability

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 ExtensionPackageCapability

Source§

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

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

impl<'de> Deserialize<'de> for ExtensionPackageCapability

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 ExtensionPackageCapability

Source§

fn eq(&self, other: &ExtensionPackageCapability) -> 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 ExtensionPackageCapability

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 ExtensionPackageCapability

Source§

impl StructuralPartialEq for ExtensionPackageCapability

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>,