pub struct InvalidRegexError(/* private fields */);Trait Implementations§
Source§impl Clone for InvalidRegexError
impl Clone for InvalidRegexError
Source§fn clone(&self) -> InvalidRegexError
fn clone(&self) -> InvalidRegexError
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 InvalidRegexError
impl Debug for InvalidRegexError
Source§impl Display for InvalidRegexError
impl Display for InvalidRegexError
Source§impl Error for InvalidRegexError
impl Error for InvalidRegexError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<Error> for InvalidRegexError
impl From<Error> for InvalidRegexError
Source§impl<T: Debug + Display> From<InvalidRegexError> for InternalError<T>
impl<T: Debug + Display> From<InvalidRegexError> for InternalError<T>
Source§fn from(source: InvalidRegexError) -> Self
fn from(source: InvalidRegexError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InvalidRegexError
impl PartialEq for InvalidRegexError
impl StructuralPartialEq for InvalidRegexError
Auto Trait Implementations§
impl Freeze for InvalidRegexError
impl RefUnwindSafe for InvalidRegexError
impl Send for InvalidRegexError
impl Sync for InvalidRegexError
impl Unpin for InvalidRegexError
impl UnsafeUnpin for InvalidRegexError
impl UnwindSafe for InvalidRegexError
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