pub enum AstFunc<T: Clone, N: Clone, D: Clone> {
Fold(fn(&[AstParam<T, N>], &mut D) -> AstParam<T, N>, usize),
Exec(fn(&[AstParam<T, N>], &mut D), usize),
}Variants§
Fold(fn(&[AstParam<T, N>], &mut D) -> AstParam<T, N>, usize)
Exec(fn(&[AstParam<T, N>], &mut D), usize)
Trait Implementations§
Auto Trait Implementations§
impl<T, N, D> Freeze for AstFunc<T, N, D>
impl<T, N, D> RefUnwindSafe for AstFunc<T, N, D>
impl<T, N, D> Send for AstFunc<T, N, D>
impl<T, N, D> Sync for AstFunc<T, N, D>
impl<T, N, D> Unpin for AstFunc<T, N, D>
impl<T, N, D> UnwindSafe for AstFunc<T, N, D>
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