pub enum RequirementSeqChildren<'tree> {
CompoundRequirement(Box<CompoundRequirement<'tree>>),
SimpleRequirement(Box<SimpleRequirement<'tree>>),
TypeRequirement(Box<TypeRequirement<'tree>>),
}Variants§
CompoundRequirement(Box<CompoundRequirement<'tree>>)
SimpleRequirement(Box<SimpleRequirement<'tree>>)
TypeRequirement(Box<TypeRequirement<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for RequirementSeqChildren<'tree>
impl<'tree> Clone for RequirementSeqChildren<'tree>
Source§fn clone(&self) -> RequirementSeqChildren<'tree>
fn clone(&self) -> RequirementSeqChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for RequirementSeqChildren<'tree>
impl<'tree> Debug for RequirementSeqChildren<'tree>
Source§impl<'tree> FromNode<'tree> for RequirementSeqChildren<'tree>
impl<'tree> FromNode<'tree> for RequirementSeqChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for RequirementSeqChildren<'tree>
impl<'tree> RefUnwindSafe for RequirementSeqChildren<'tree>
impl<'tree> Send for RequirementSeqChildren<'tree>
impl<'tree> Sync for RequirementSeqChildren<'tree>
impl<'tree> Unpin for RequirementSeqChildren<'tree>
impl<'tree> UnsafeUnpin for RequirementSeqChildren<'tree>
impl<'tree> UnwindSafe for RequirementSeqChildren<'tree>
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