pub enum Error {
Show 27 variants
VariableNotFound(String),
IncorrectContext(String),
NotInterpretableAsLogical,
ConditionIsNotScalar,
CannotBeCoercedToCharacter,
CannotBeCoercedToDouble,
CannotBeCoercedToInteger,
CannotBeCoercedToLogical,
CannotBeCoercedTo(&'static str),
InvalidRange,
NonRecyclableLengths(usize, usize),
CannotBeDestructuredIntoList,
InvalidFunctionParameter(Expr),
DuplicatedParameter(String),
DuplicatedMoreParameter(),
Missing,
ArgumentMissing(String),
ArgumentInvalid(String),
ParseFailureVerbose(Error<Rule>),
ParseFailure(Error<Rule>),
ParseUnexpected(Rule, (usize, usize)),
WithCallStack(Box<Error>, CallStack),
Unimplemented(Option<String>),
Internal(Option<String>, &'static str, u32),
CannotEvaluateAsMutable(Expr),
FeatureDisabledRestArgs,
Other(String),
}
Variants§
VariableNotFound(String)
IncorrectContext(String)
NotInterpretableAsLogical
ConditionIsNotScalar
CannotBeCoercedToCharacter
CannotBeCoercedToDouble
CannotBeCoercedToInteger
CannotBeCoercedToLogical
CannotBeCoercedTo(&'static str)
InvalidRange
NonRecyclableLengths(usize, usize)
CannotBeDestructuredIntoList
InvalidFunctionParameter(Expr)
DuplicatedParameter(String)
DuplicatedMoreParameter()
Missing
ArgumentMissing(String)
ArgumentInvalid(String)
ParseFailureVerbose(Error<Rule>)
ParseFailure(Error<Rule>)
ParseUnexpected(Rule, (usize, usize))
WithCallStack(Box<Error>, CallStack)
Unimplemented(Option<String>)
Internal(Option<String>, &'static str, u32)
CannotEvaluateAsMutable(Expr)
FeatureDisabledRestArgs
Other(String)
Implementations§
Trait Implementations§
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl !Send for Error
impl !Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
fn as_any(&self) -> &(dyn Any + 'static)
fn as_dyn_compare(&self) -> &(dyn DynCompare + 'static)
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> DynCompare for T
impl<T> DynCompare for T
fn dyn_eq(&self, other: &(dyn DynCompare + 'static)) -> bool
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more