pub enum Error {
Show 22 variants
Io(Error),
InvalidMac,
FailedKeyExchange,
FailedRng,
TrailingBytes,
WrongType,
InvalidType,
InvalidValue,
InvalidLength,
InvalidLengthOfLength,
OlderVersion,
BetaVersion,
NewerVersion,
InvalidRecord,
InvalidKey,
InvalidProof,
EmptyPayload,
InvalidCommitment,
InvalidTransport,
InvalidConfirmation,
TimePeriodIsPast,
Timeout,
// some variants omitted
}Expand description
Bramble errors
Variants§
Io(Error)
An I/O error has occurred.
InvalidMac
An invalid MAC was detected.
FailedKeyExchange
A key exchange failed.
FailedRng
Random number generation failed,
TrailingBytes
Trailing bytes found in the stream.
WrongType
An object with a different type was expected.
InvalidType
An invalid object type was found.
InvalidValue
An invalid object value was found.
InvalidLength
An invalid object length was found.
InvalidLengthOfLength
An invalid object length-of-length was found.
OlderVersion
An older protocol version was found.
BetaVersion
A beta protocol version was found.
NewerVersion
A newer protocol version was found.
InvalidRecord
An invalid record was received.
InvalidKey
An invalid public key was found.
InvalidProof
An invalid proof of ownership was found.
EmptyPayload
An empty payload was found.
InvalidCommitment
An invalid commitment was found.
InvalidTransport
An invalid transport was found.
InvalidConfirmation
An invalid confirmation was received.
TimePeriodIsPast
Time period in the past.
Timeout
Time has ran out.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Error for Error
impl Error for Error
Source§fn custom<T>(msg: T) -> Errorwhere
T: Display,
fn custom<T>(msg: T) -> Errorwhere
T: Display,
Raised when there is general error when deserializing a type. Read more
Source§fn invalid_type(_unexp: Unexpected<'_>, _exp: &dyn Expected) -> Error
fn invalid_type(_unexp: Unexpected<'_>, _exp: &dyn Expected) -> Error
Raised when a
Deserialize receives a type different from what it was
expecting. Read moreSource§fn invalid_value(_unexp: Unexpected<'_>, _exp: &dyn Expected) -> Error
fn invalid_value(_unexp: Unexpected<'_>, _exp: &dyn Expected) -> Error
Raised when a
Deserialize receives a value of the right type but that
is wrong for some other reason. Read moreSource§fn invalid_length(_len: usize, _exp: &dyn Expected) -> Error
fn invalid_length(_len: usize, _exp: &dyn Expected) -> Error
Raised when deserializing a sequence or map and the input data contains
too many or too few elements. Read more
Source§fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
Raised when a
Deserialize enum type received a variant with an
unrecognized name.Source§fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
Raised when a
Deserialize struct type received a field with an
unrecognized name.Source§fn missing_field(field: &'static str) -> Self
fn missing_field(field: &'static str) -> Self
Raised when a
Deserialize struct type expected to receive a required
field with a particular name but that field was not present in the
input.Source§fn duplicate_field(field: &'static str) -> Self
fn duplicate_field(field: &'static str) -> Self
Raised when a
Deserialize struct type received more than one of the
same field.Source§impl From<CharTryFromError> for Error
impl From<CharTryFromError> for Error
Source§fn from(_: CharTryFromError) -> Error
fn from(_: CharTryFromError) -> Error
Converts to this type from the input type.
Source§impl From<TryFromIntError> for Error
impl From<TryFromIntError> for Error
Source§fn from(_: TryFromIntError) -> Error
fn from(_: TryFromIntError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more