pub enum ContextCreationError {
Unknown,
}
Variants§
Unknown
Unknown error inside of libcoap
Trait Implementations§
Source§impl Clone for ContextCreationError
impl Clone for ContextCreationError
Source§fn clone(&self) -> ContextCreationError
fn clone(&self) -> ContextCreationError
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 ContextCreationError
impl Debug for ContextCreationError
Source§impl Display for ContextCreationError
impl Display for ContextCreationError
Source§impl Error for ContextCreationError
impl Error for ContextCreationError
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 ContextCreationError
impl PartialEq for ContextCreationError
impl Copy for ContextCreationError
impl Eq for ContextCreationError
impl StructuralPartialEq for ContextCreationError
Auto Trait Implementations§
impl Freeze for ContextCreationError
impl RefUnwindSafe for ContextCreationError
impl Send for ContextCreationError
impl Sync for ContextCreationError
impl Unpin for ContextCreationError
impl UnwindSafe for ContextCreationError
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