pub struct UntilFailure<N> { /* private fields */ }Expand description
Keeps returning TickStatus::Running until the child fails.
Implementations§
Source§impl<N> UntilFailure<N>
impl<N> UntilFailure<N>
Trait Implementations§
Source§impl<N> Node for UntilFailure<N>where
N: Node,
impl<N> Node for UntilFailure<N>where
N: Node,
Source§fn tick(&mut self) -> TickStatus
fn tick(&mut self) -> TickStatus
Advance the node by one execution step. Read more
Auto Trait Implementations§
impl<N> Freeze for UntilFailure<N>where
N: Freeze,
impl<N> RefUnwindSafe for UntilFailure<N>where
N: RefUnwindSafe,
impl<N> Send for UntilFailure<N>where
N: Send,
impl<N> Sync for UntilFailure<N>where
N: Sync,
impl<N> Unpin for UntilFailure<N>where
N: Unpin,
impl<N> UnsafeUnpin for UntilFailure<N>where
N: UnsafeUnpin,
impl<N> UnwindSafe for UntilFailure<N>where
N: UnwindSafe,
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