pub struct UnknownTypeError;
Expand description
Error representing unknown LNP message type
Trait Implementations§
Source§impl Clone for UnknownTypeError
impl Clone for UnknownTypeError
Source§fn clone(&self) -> UnknownTypeError
fn clone(&self) -> UnknownTypeError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UnknownTypeError
impl Debug for UnknownTypeError
Source§impl Display for UnknownTypeError
impl Display for UnknownTypeError
Source§impl Error for UnknownTypeError
impl Error for UnknownTypeError
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 From<UnknownTypeError> for Error
impl From<UnknownTypeError> for Error
Source§fn from(v: UnknownTypeError) -> Self
fn from(v: UnknownTypeError) -> Self
Converts to this type from the input type.
Source§impl From<UnknownTypeError> for String
impl From<UnknownTypeError> for String
Source§fn from(err: UnknownTypeError) -> Self
fn from(err: UnknownTypeError) -> Self
Converts to this type from the input type.
Source§impl Hash for UnknownTypeError
impl Hash for UnknownTypeError
Source§impl Ord for UnknownTypeError
impl Ord for UnknownTypeError
Source§fn cmp(&self, other: &UnknownTypeError) -> Ordering
fn cmp(&self, other: &UnknownTypeError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UnknownTypeError
impl PartialEq for UnknownTypeError
Source§impl PartialOrd for UnknownTypeError
impl PartialOrd for UnknownTypeError
impl Copy for UnknownTypeError
impl Eq for UnknownTypeError
impl StructuralPartialEq for UnknownTypeError
Auto Trait Implementations§
impl Freeze for UnknownTypeError
impl RefUnwindSafe for UnknownTypeError
impl Send for UnknownTypeError
impl Sync for UnknownTypeError
impl Unpin for UnknownTypeError
impl UnwindSafe for UnknownTypeError
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