pub enum RoseTree<A> {
Node(A, Vec<RoseTree<A>>),
}Expand description
Evaluator for generic recursion schemes over rose trees.
A RoseTree<A> models the fixed point of F X = A × List X.
Variants§
Auto Trait Implementations§
impl<A> Freeze for RoseTree<A>where
A: Freeze,
impl<A> RefUnwindSafe for RoseTree<A>where
A: RefUnwindSafe,
impl<A> Send for RoseTree<A>where
A: Send,
impl<A> Sync for RoseTree<A>where
A: Sync,
impl<A> Unpin for RoseTree<A>where
A: Unpin,
impl<A> UnsafeUnpin for RoseTree<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for RoseTree<A>where
A: 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