pub enum SevenMarkError {
RecursionDepthExceeded {
depth: usize,
max_depth: usize,
},
}Variants§
Implementations§
Source§impl SevenMarkError
impl SevenMarkError
Sourcepub fn into_context_error(self) -> ContextError
pub fn into_context_error(self) -> ContextError
SevenMarkError를 winnow::error::ContextError로 변환
Trait Implementations§
Source§impl Clone for SevenMarkError
impl Clone for SevenMarkError
Source§fn clone(&self) -> SevenMarkError
fn clone(&self) -> SevenMarkError
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 SevenMarkError
impl Debug for SevenMarkError
Source§impl Display for SevenMarkError
impl Display for SevenMarkError
Source§impl Error for SevenMarkError
impl Error for SevenMarkError
1.30.0 · 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 PartialEq for SevenMarkError
impl PartialEq for SevenMarkError
impl StructuralPartialEq for SevenMarkError
Auto Trait Implementations§
impl Freeze for SevenMarkError
impl RefUnwindSafe for SevenMarkError
impl Send for SevenMarkError
impl Sync for SevenMarkError
impl Unpin for SevenMarkError
impl UnwindSafe for SevenMarkError
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