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