Enum scilla_parser::ast::TraversalResult
source · pub enum TraversalResult {
Continue,
SkipChildren,
}Variants§
Continue
Returned when the visitor should continue tree traversal
SkipChildren
Returned when the visitor should skip the children and exit traversal
Trait Implementations§
source§impl PartialEq for TraversalResult
impl PartialEq for TraversalResult
source§fn eq(&self, other: &TraversalResult) -> bool
fn eq(&self, other: &TraversalResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TraversalResult
impl StructuralEq for TraversalResult
impl StructuralPartialEq for TraversalResult
Auto Trait Implementations§
impl RefUnwindSafe for TraversalResult
impl Send for TraversalResult
impl Sync for TraversalResult
impl Unpin for TraversalResult
impl UnwindSafe for TraversalResult
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