pub struct NotImplemented {
pub what: &'static str,
}Expand description
Error for a valid request that is not implemented yet.
Fields§
§what: &'static strFeature or path that is not implemented.
Trait Implementations§
Source§impl Clone for NotImplemented
impl Clone for NotImplemented
Source§fn clone(&self) -> NotImplemented
fn clone(&self) -> NotImplemented
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NotImplemented
Source§impl Debug for NotImplemented
impl Debug for NotImplemented
Source§impl Display for NotImplemented
impl Display for NotImplemented
impl Eq for NotImplemented
Source§impl Error for NotImplemented
impl Error for NotImplemented
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 NotImplemented
impl PartialEq for NotImplemented
Source§fn eq(&self, other: &NotImplemented) -> bool
fn eq(&self, other: &NotImplemented) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NotImplemented
Auto Trait Implementations§
impl Freeze for NotImplemented
impl RefUnwindSafe for NotImplemented
impl Send for NotImplemented
impl Sync for NotImplemented
impl Unpin for NotImplemented
impl UnsafeUnpin for NotImplemented
impl UnwindSafe for NotImplemented
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