[][src]Enum lnpbp::single_use_seals::SealMediumError

pub enum SealMediumError<M: Error> {
    MediumAccessError(M),
    PublicationIdNotSupported,
}

Error returned by SealMedium and [AsyncSealMedium] functions related to work with publication id (SealMedium::PublicationId). Required since not all implementation of [SealMedia] may define publication identifier, and the traits provide default implementation for these functions always returning [SealMediumError::OperationNotSupported]. If the implementation would like to provide custom implementation, it may embed standard error related to SealMedium operations within SealMediumError::MediumAccessError case; the type of MediumAccessError is defined through generic argument to SealMediumError.

Variants

MediumAccessError(M)

Can't access the publication medium

PublicationIdNotSupported

Publication id is not supported

Trait Implementations

impl<M: Clone + Error> Clone for SealMediumError<M>[src]

impl<M: Copy + Error> Copy for SealMediumError<M>[src]

impl<M: Debug + Error> Debug for SealMediumError<M>[src]

impl<M: Error> Display for SealMediumError<M>[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for SealMediumError<M> where
    M: RefUnwindSafe

impl<M> Send for SealMediumError<M> where
    M: Send

impl<M> Sync for SealMediumError<M> where
    M: Sync

impl<M> Unpin for SealMediumError<M> where
    M: Unpin

impl<M> UnwindSafe for SealMediumError<M> where
    M: 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, 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> ToString for T where
    T: Display + ?Sized
[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>,