pub enum ControlKind<N: Node> {
Let(Let),
If(If<N>),
For(For<N>),
While(While<N>),
Match(Match<N>),
Async(Async),
}Variants§
Auto Trait Implementations§
impl<N> !Send for ControlKind<N>
impl<N> !Sync for ControlKind<N>
impl<N> Freeze for ControlKind<N>
impl<N> RefUnwindSafe for ControlKind<N>where
N: RefUnwindSafe,
impl<N> Unpin for ControlKind<N>where
N: Unpin,
impl<N> UnsafeUnpin for ControlKind<N>
impl<N> UnwindSafe for ControlKind<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