Enum blot::seal::SealError[][src]

pub enum SealError {
    InvalidStamp {
        actual: Uvar,
        expected: Uvar,
    },
    NotRedacted,
    DigestTooShort,
    UnexpectedLength {
        actual: u8,
        expected: u8,
    },
    UvarParseError(UvarError),
    HexError(FromHexError),
}

Variants

Fields of InvalidStamp

Fields of UnexpectedLength

Trait Implementations

impl Debug for SealError
[src]

Formats the value using the given formatter. Read more

impl From<UvarError> for SealError
[src]

Performs the conversion.

impl From<FromHexError> for SealError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SealError

impl Sync for SealError