pub struct UnknownValueError(/* private fields */);Expand description
Indicates that an invalid value is setted to an SelectElement.
It means there is no <option> element that has the given value.
Trait Implementations§
Source§impl Clone for UnknownValueError
impl Clone for UnknownValueError
Source§fn clone(&self) -> UnknownValueError
fn clone(&self) -> UnknownValueError
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 UnknownValueError
impl Debug for UnknownValueError
Source§impl Display for UnknownValueError
impl Display for UnknownValueError
Source§impl Error for UnknownValueError
impl Error for UnknownValueError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl PartialEq for UnknownValueError
impl PartialEq for UnknownValueError
impl Eq for UnknownValueError
impl StructuralPartialEq for UnknownValueError
Auto Trait Implementations§
impl Freeze for UnknownValueError
impl RefUnwindSafe for UnknownValueError
impl Send for UnknownValueError
impl Sync for UnknownValueError
impl Unpin for UnknownValueError
impl UnwindSafe for UnknownValueError
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