pub struct UnknownSortKey { /* private fields */ }Expand description
The error returned when a sort field name is not one this build knows.
Carries the offending text so the config layer can point at the exact key (§12) instead of reporting “invalid configuration”.
Implementations§
Trait Implementations§
Source§impl Clone for UnknownSortKey
impl Clone for UnknownSortKey
Source§fn clone(&self) -> UnknownSortKey
fn clone(&self) -> UnknownSortKey
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 moreSource§impl Debug for UnknownSortKey
impl Debug for UnknownSortKey
Source§impl Display for UnknownSortKey
impl Display for UnknownSortKey
impl Eq for UnknownSortKey
Source§impl Error for UnknownSortKey
impl Error for UnknownSortKey
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 UnknownSortKey
impl PartialEq for UnknownSortKey
impl StructuralPartialEq for UnknownSortKey
Auto Trait Implementations§
impl Freeze for UnknownSortKey
impl RefUnwindSafe for UnknownSortKey
impl Send for UnknownSortKey
impl Sync for UnknownSortKey
impl Unpin for UnknownSortKey
impl UnsafeUnpin for UnknownSortKey
impl UnwindSafe for UnknownSortKey
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