[][src]Struct safe_core::self_encryption_storage::SelfEncryptionStorageDryRun

pub struct SelfEncryptionStorageDryRun<C: Client + 'static> { /* fields omitted */ }

Network storage is the concrete type which self-encryption crate will use to put or get data from the network.

Implementations

impl<C: Client + 'static> SelfEncryptionStorageDryRun<C>[src]

pub fn new(client: C, published: bool) -> Self[src]

Create a new SelfEncryptionStorage instance.

Trait Implementations

impl<C: Clone + Client + 'static> Clone for SelfEncryptionStorageDryRun<C>[src]

impl<C: Send + Sync + Client + 'static> Storage for SelfEncryptionStorageDryRun<C>[src]

type Error = SEStorageError

Error type returned by get or put.

Auto Trait Implementations

impl<C> RefUnwindSafe for SelfEncryptionStorageDryRun<C> where
    C: RefUnwindSafe

impl<C> Send for SelfEncryptionStorageDryRun<C>

impl<C> Sync for SelfEncryptionStorageDryRun<C>

impl<C> Unpin for SelfEncryptionStorageDryRun<C> where
    C: Unpin

impl<C> UnwindSafe for SelfEncryptionStorageDryRun<C> where
    C: 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> CloneAny for T where
    T: Clone + Any

impl<T> From<T> 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<T> UnsafeAny for T where
    T: Any

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