Struct ockam_vault_sync_core::VaultWorker[][src]

pub struct VaultWorker<V> where
    V: VaultTrait
{ /* fields omitted */ }

A Worker that exposes a Vault API.

Implementations

impl<V> VaultWorker<V> where
    V: VaultTrait
[src]

pub async fn create_with_inner(ctx: &Context, inner: V) -> Result<Address>[src]

Start a VaultWorker.

Trait Implementations

impl<V> Worker for VaultWorker<V> where
    V: VaultTrait
[src]

type Message = VaultRequestMessage

The type of Message the Worker is sent in Self::handle_message

type Context = Context

The API and other resources available for the worker during message processing.

impl<V> Zeroize for VaultWorker<V> where
    V: VaultTrait,
    V: Zeroize
[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for VaultWorker<V> where
    V: RefUnwindSafe

impl<V> Send for VaultWorker<V>

impl<V> Sync for VaultWorker<V> where
    V: Sync

impl<V> Unpin for VaultWorker<V> where
    V: Unpin

impl<V> UnwindSafe for VaultWorker<V> where
    V: UnwindSafe

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, U> Into<U> for T where
    U: From<T>, 
[src]

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