pub enum ValueTree {
Leaf(ConstValue),
Branch(Vec<Self>),
}
Variants§
Leaf(ConstValue)
Branch(Vec<Self>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ValueTree
impl Send for ValueTree
impl Sync for ValueTree
impl Unpin for ValueTree
impl UnwindSafe for ValueTree
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