pub enum DeprecationError {
DotInSet,
}
Expand description
An error that is returned when a deprecated feature is used
Variants§
DotInSet
Deprecated [.]
Trait Implementations§
Source§impl Clone for DeprecationError
impl Clone for DeprecationError
Source§fn clone(&self) -> DeprecationError
fn clone(&self) -> DeprecationError
Returns a duplicate of the value. Read more
1.0.0 · 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 DeprecationError
impl Debug for DeprecationError
Source§impl Display for DeprecationError
impl Display for DeprecationError
Source§impl Error for DeprecationError
impl Error for DeprecationError
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<DeprecationError> for ParseErrorKind
impl From<DeprecationError> for ParseErrorKind
Source§fn from(e: DeprecationError) -> Self
fn from(e: DeprecationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeprecationError
impl PartialEq for DeprecationError
impl Copy for DeprecationError
impl Eq for DeprecationError
impl StructuralPartialEq for DeprecationError
Auto Trait Implementations§
impl Freeze for DeprecationError
impl RefUnwindSafe for DeprecationError
impl Send for DeprecationError
impl Sync for DeprecationError
impl Unpin for DeprecationError
impl UnwindSafe for DeprecationError
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