Enum rsonpath_lib::engine::error::DepthError
source · pub enum DepthError {
AboveLimit(usize),
BelowZero,
}
Expand description
Errors in internal depth tracking of execution engines.
Variants§
AboveLimit(usize)
The engine’s maximum depth limit was exceeded.
The inner usize
indicates that limit.
BelowZero
The document has unmatched closing characters and is malformed.
Trait Implementations§
source§impl Debug for DepthError
impl Debug for DepthError
source§impl Display for DepthError
impl Display for DepthError
source§impl Error for DepthError
impl Error for DepthError
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()