pub enum PropValError {
Int(ParseIntError),
Date(DateError),
}
Expand description
Error when no valid value could be parsed.
Variants§
Int(ParseIntError)
Date(DateError)
Trait Implementations§
Source§impl Clone for PropValError
impl Clone for PropValError
Source§fn clone(&self) -> PropValError
fn clone(&self) -> PropValError
Returns a copy 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 PropValError
impl Debug for PropValError
Source§impl PartialEq for PropValError
impl PartialEq for PropValError
impl Eq for PropValError
impl StructuralPartialEq for PropValError
Auto Trait Implementations§
impl Freeze for PropValError
impl RefUnwindSafe for PropValError
impl Send for PropValError
impl Sync for PropValError
impl Unpin for PropValError
impl UnwindSafe for PropValError
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