Enum validators::integer::IntegerError
source · pub enum IntegerError {
NegativeNotAllow,
NegativeNotFound,
ZeroNotAllow,
ZeroNotFound,
ParseError(String),
UnpreciseError,
}Variants§
Trait Implementations§
source§impl Clone for IntegerError
impl Clone for IntegerError
source§fn clone(&self) -> IntegerError
fn clone(&self) -> IntegerError
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 IntegerError
impl Debug for IntegerError
source§impl Display for IntegerError
impl Display for IntegerError
source§impl Error for IntegerError
impl Error for IntegerError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<IntegerError> for IntegerError
impl PartialEq<IntegerError> for IntegerError
source§fn eq(&self, other: &IntegerError) -> bool
fn eq(&self, other: &IntegerError) -> bool
impl StructuralPartialEq for IntegerError
Auto Trait Implementations§
impl RefUnwindSafe for IntegerError
impl Send for IntegerError
impl Sync for IntegerError
impl Unpin for IntegerError
impl UnwindSafe for IntegerError
Blanket Implementations§
§impl<T> AsFail for Twhere
T: Fail,
impl<T> AsFail for Twhere
T: Fail,
§impl<E> Fail for Ewhere
E: 'static + Error + Send + Sync,
impl<E> Fail for Ewhere
E: 'static + Error + Send + Sync,
§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read more§impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
§fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
Converts
self into a collection.