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, .dll
files on Windows, etc.
Implementations
impl NativeCapability
[src]
impl NativeCapability
[src]pub fn from_archive(
archive: &ProviderArchive,
link_target_name: Option<String>
) -> Result<Self>
[src]
archive: &ProviderArchive,
link_target_name: Option<String>
) -> Result<Self>
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. This call will fail if the archive does not contain a suitable plugin for the CPU architecture/OS of the caller.
pub fn from_instance(
instance: impl CapabilityProvider + 'static,
link_target_name: Option<String>,
claims: Claims<CapabilityProvider>
) -> Result<Self>
[src]
instance: impl CapabilityProvider + 'static,
link_target_name: Option<String>,
claims: Claims<CapabilityProvider>
) -> Result<Self>
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]
Returns the path where this capability provider’s binary resides/should reside for cache purposes.
Trait Implementations
impl Clone for NativeCapability
[src]
impl Clone for NativeCapability
[src]fn clone(&self) -> NativeCapability
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl !RefUnwindSafe for NativeCapability
impl !RefUnwindSafe for NativeCapability
impl Send for NativeCapability
impl Send for NativeCapability
impl Sync for NativeCapability
impl Sync for NativeCapability
impl Unpin for NativeCapability
impl Unpin for NativeCapability
impl !UnwindSafe for NativeCapability
impl !UnwindSafe for NativeCapability
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,