pub enum WalkAction {
Continue,
Interrupt,
}
Variants§
Implementations§
source§impl WalkAction
impl WalkAction
pub fn continue_until(condition: bool) -> Self
Trait Implementations§
source§impl Clone for WalkAction
impl Clone for WalkAction
source§fn clone(&self) -> WalkAction
fn clone(&self) -> WalkAction
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 From<WalkAction> for EntityVisitResult
impl From<WalkAction> for EntityVisitResult
source§fn from(action: WalkAction) -> Self
fn from(action: WalkAction) -> Self
Converts to this type from the input type.
impl Copy for WalkAction
Auto Trait Implementations§
impl RefUnwindSafe for WalkAction
impl Send for WalkAction
impl Sync for WalkAction
impl Unpin for WalkAction
impl UnwindSafe for WalkAction
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