Enum spinoso_regexp::Error
source · pub enum Error {
Argument(ArgumentError),
Regexp(RegexpError),
Syntax(SyntaxError),
}
Expand description
Sum type of all errors possibly returned from Regexp
APIs.
Variants§
Argument(ArgumentError)
Error that indicates an argument parsing or value logic error occurred.
See ArgumentError
.
Regexp(RegexpError)
Error that indicates a Regexp
was malformed at runtime.
See RegexpError
.
Syntax(SyntaxError)
Error that indicates a given Regexp
pattern could not be parsed when
given as a /.../
literal in Ruby source code.
See SyntaxError
.
Trait Implementations§
source§impl Error for Error
impl Error for Error
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 From<ArgumentError> for Error
impl From<ArgumentError> for Error
source§fn from(err: ArgumentError) -> Self
fn from(err: ArgumentError) -> Self
Converts to this type from the input type.
source§impl From<RegexpError> for Error
impl From<RegexpError> for Error
source§fn from(err: RegexpError) -> Self
fn from(err: RegexpError) -> Self
Converts to this type from the input type.
source§impl From<SyntaxError> for Error
impl From<SyntaxError> for Error
source§fn from(err: SyntaxError) -> Self
fn from(err: SyntaxError) -> Self
Converts to this type from the input type.
source§impl Ord for Error
impl Ord for Error
source§impl PartialEq<Error> for Error
impl PartialEq<Error> for Error
source§impl PartialOrd<Error> for Error
impl PartialOrd<Error> for Error
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Error
impl StructuralEq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
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> 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