Struct wasmcloud_host::NativeCapability[][src]

pub struct NativeCapability { /* fields omitted */ }

Represents a native capability provider compiled as a shared object library. These plugins are OS- and architecture-specific, so they will be .so files on Linux, .dylib files on macOS, etc.

Implementations

impl NativeCapability[src]

pub fn from_archive(
    archive: &ProviderArchive,
    link_target_name: Option<String>
) -> Result<Self>
[src]

Reads a capability provider from an archive file. The right architecture/OS plugin library will be chosen from the file, or an error will result if it isn’t found.

pub fn from_instance(
    instance: impl CapabilityProvider + 'static,
    link_target_name: Option<String>,
    claims: Claims<CapabilityProvider>
) -> Result<Self>
[src]

This function is to be used for capability embedding. If you are building a custom wasmcloud host and have a fixed set of capabilities that you want to always be available to actors, then you can declare a dependency on the capability provider, enable the static_plugin feature, and provide an instance of that provider. Be sure to check that the provider supports capability embedding. You must also provide a set of valid claims that can be generated from a signed JWT

pub fn id(&self) -> String[src]

Returns the unique ID (public key/subject) of the capability provider

pub fn cache_path(&self) -> PathBuf[src]

Trait Implementations

impl Clone for NativeCapability[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,