pub enum EnvLangErrorKind {
SpaceNotAllow,
TooManyPoint,
TooManyUnderscore,
TooManyArobase,
}
Variants§
Trait Implementations§
Source§impl Clone for EnvLangErrorKind
impl Clone for EnvLangErrorKind
Source§fn clone(&self) -> EnvLangErrorKind
fn clone(&self) -> EnvLangErrorKind
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 EnvLangErrorKind
impl Debug for EnvLangErrorKind
Source§impl Display for EnvLangErrorKind
impl Display for EnvLangErrorKind
Source§impl Fail for EnvLangErrorKind
impl Fail for EnvLangErrorKind
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§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 moreSource§impl From<EnvLangErrorKind> for EnvLangError
impl From<EnvLangErrorKind> for EnvLangError
Source§fn from(kind: EnvLangErrorKind) -> EnvLangError
fn from(kind: EnvLangErrorKind) -> EnvLangError
Converts to this type from the input type.
Source§impl PartialEq for EnvLangErrorKind
impl PartialEq for EnvLangErrorKind
impl Eq for EnvLangErrorKind
impl StructuralPartialEq for EnvLangErrorKind
Auto Trait Implementations§
impl Freeze for EnvLangErrorKind
impl RefUnwindSafe for EnvLangErrorKind
impl Send for EnvLangErrorKind
impl Sync for EnvLangErrorKind
impl Unpin for EnvLangErrorKind
impl UnwindSafe for EnvLangErrorKind
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