pub enum DeprecationWarning {
Unicode(String),
ShorthandInRange(char),
}Expand description
A deprecation warning: Indicates that something shouldn’t be used anymore
Variants§
Trait Implementations§
Source§impl Clone for DeprecationWarning
impl Clone for DeprecationWarning
Source§fn clone(&self) -> DeprecationWarning
fn clone(&self) -> DeprecationWarning
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 DeprecationWarning
impl Debug for DeprecationWarning
Auto Trait Implementations§
impl Freeze for DeprecationWarning
impl RefUnwindSafe for DeprecationWarning
impl Send for DeprecationWarning
impl Sync for DeprecationWarning
impl Unpin for DeprecationWarning
impl UnwindSafe for DeprecationWarning
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