pub enum SigNetError {
Show 16 variants
InvalidArgument,
BufferFull,
Crypto,
Encode,
Network,
BufferTooSmall,
InvalidPacket,
InvalidOption,
HmacFailed,
TestFailure,
PassphraseTooShort,
PassphraseTooLong,
PassphraseInsufficientClasses,
PassphraseConsecutiveIdentical,
PassphraseConsecutiveSequential,
SessionIdOverflow,
}Variants§
InvalidArgument
BufferFull
Crypto
Encode
Network
BufferTooSmall
InvalidPacket
InvalidOption
HmacFailed
TestFailure
PassphraseTooShort
PassphraseTooLong
PassphraseInsufficientClasses
PassphraseConsecutiveIdentical
PassphraseConsecutiveSequential
SessionIdOverflow
Trait Implementations§
Source§impl Clone for SigNetError
impl Clone for SigNetError
Source§fn clone(&self) -> SigNetError
fn clone(&self) -> SigNetError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SigNetError
impl Debug for SigNetError
Source§impl Display for SigNetError
impl Display for SigNetError
Source§impl Error for SigNetError
impl Error for SigNetError
1.30.0 · 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 PartialEq for SigNetError
impl PartialEq for SigNetError
impl Copy for SigNetError
impl Eq for SigNetError
impl StructuralPartialEq for SigNetError
Auto Trait Implementations§
impl Freeze for SigNetError
impl RefUnwindSafe for SigNetError
impl Send for SigNetError
impl Sync for SigNetError
impl Unpin for SigNetError
impl UnsafeUnpin for SigNetError
impl UnwindSafe for SigNetError
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