pub enum ItemVisitorResult<State> {
Continue(State),
Abort,
}
Variants§
Auto Trait Implementations§
impl<State> Freeze for ItemVisitorResult<State>where
State: Freeze,
impl<State> RefUnwindSafe for ItemVisitorResult<State>where
State: RefUnwindSafe,
impl<State> Send for ItemVisitorResult<State>where
State: Send,
impl<State> Sync for ItemVisitorResult<State>where
State: Sync,
impl<State> Unpin for ItemVisitorResult<State>where
State: Unpin,
impl<State> UnwindSafe for ItemVisitorResult<State>where
State: 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