Enum libp2p::pnet::KeyParseError
source · [−]pub enum KeyParseError {
InvalidKeyFile,
InvalidKeyType,
InvalidKeyEncoding,
InvalidKeyLength,
InvalidKeyChar(ParseIntError),
}
Expand description
Error when parsing a PreSharedKey
Variants
InvalidKeyFile
file does not have the expected structure
InvalidKeyType
unsupported key type
InvalidKeyEncoding
unsupported key encoding. Currently only base16 is supported
InvalidKeyLength
Key is of the wrong length
InvalidKeyChar(ParseIntError)
key string contains a char that is not consistent with the specified encoding
Trait Implementations
sourceimpl Clone for KeyParseError
impl Clone for KeyParseError
sourcepub fn clone(&self) -> KeyParseError
pub fn clone(&self) -> KeyParseError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for KeyParseError
impl Debug for KeyParseError
sourceimpl Display for KeyParseError
impl Display for KeyParseError
sourceimpl Error for KeyParseError
impl Error for KeyParseError
sourcepub fn source(&self) -> Option<&(dyn Error + 'static)>
pub fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl PartialEq<KeyParseError> for KeyParseError
impl PartialEq<KeyParseError> for KeyParseError
sourcepub fn eq(&self, other: &KeyParseError) -> bool
pub fn eq(&self, other: &KeyParseError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &KeyParseError) -> bool
pub fn ne(&self, other: &KeyParseError) -> bool
This method tests for !=
.
impl Eq for KeyParseError
impl StructuralEq for KeyParseError
impl StructuralPartialEq for KeyParseError
Auto Trait Implementations
impl RefUnwindSafe for KeyParseError
impl Send for KeyParseError
impl Sync for KeyParseError
impl Unpin for KeyParseError
impl UnwindSafe for KeyParseError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more