Struct regex_automata::hybrid::id::LazyStateIDError
source · pub(crate) struct LazyStateIDError {
attempted: u64,
}
Expand description
This error occurs when a lazy state ID could not be constructed.
This occurs when given an integer exceeding the maximum lazy state ID value.
When the std
feature is enabled, this implements the Error
trait.
Fields§
§attempted: u64
Implementations§
Trait Implementations§
source§impl Clone for LazyStateIDError
impl Clone for LazyStateIDError
source§fn clone(&self) -> LazyStateIDError
fn clone(&self) -> LazyStateIDError
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 LazyStateIDError
impl Debug for LazyStateIDError
source§impl Display for LazyStateIDError
impl Display for LazyStateIDError
source§impl Error for LazyStateIDError
impl Error for LazyStateIDError
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 for LazyStateIDError
impl PartialEq for LazyStateIDError
source§fn eq(&self, other: &LazyStateIDError) -> bool
fn eq(&self, other: &LazyStateIDError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for LazyStateIDError
impl StructuralPartialEq for LazyStateIDError
Auto Trait Implementations§
impl Freeze for LazyStateIDError
impl RefUnwindSafe for LazyStateIDError
impl Send for LazyStateIDError
impl Sync for LazyStateIDError
impl Unpin for LazyStateIDError
impl UnwindSafe for LazyStateIDError
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