MinimalHandler

Trait MinimalHandler 

Source
pub trait MinimalHandler:
    Send
    + Sync
    + Clone
    + 'static { }
Expand description

MinimalHandler represents the base traits that a handler must implement to be used with wasmcloud_runtime. It is a subset of the Handler trait, which includes many more traits for capability implementations when running in wasmCloud.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Send + Sync + Clone + 'static> MinimalHandler for T