pub enum FlowNodeChildren<'tree> {
Alias(Box<Alias<'tree>>),
Anchor(Box<Anchor<'tree>>),
DoubleQuoteScalar(Box<DoubleQuoteScalar<'tree>>),
FlowMapping(Box<FlowMapping<'tree>>),
FlowSequence(Box<FlowSequence<'tree>>),
PlainScalar(Box<PlainScalar<'tree>>),
SingleQuoteScalar(Box<SingleQuoteScalar<'tree>>),
Tag(Box<Tag<'tree>>),
}Variants§
Alias(Box<Alias<'tree>>)
Anchor(Box<Anchor<'tree>>)
DoubleQuoteScalar(Box<DoubleQuoteScalar<'tree>>)
FlowMapping(Box<FlowMapping<'tree>>)
FlowSequence(Box<FlowSequence<'tree>>)
PlainScalar(Box<PlainScalar<'tree>>)
SingleQuoteScalar(Box<SingleQuoteScalar<'tree>>)
Tag(Box<Tag<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for FlowNodeChildren<'tree>
impl<'tree> Clone for FlowNodeChildren<'tree>
Source§fn clone(&self) -> FlowNodeChildren<'tree>
fn clone(&self) -> FlowNodeChildren<'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 FlowNodeChildren<'tree>
impl<'tree> Debug for FlowNodeChildren<'tree>
Source§impl<'tree> FromNode<'tree> for FlowNodeChildren<'tree>
impl<'tree> FromNode<'tree> for FlowNodeChildren<'tree>
Source§impl<'tree> PartialEq for FlowNodeChildren<'tree>
impl<'tree> PartialEq for FlowNodeChildren<'tree>
Source§impl Spanned for FlowNodeChildren<'_>
impl Spanned for FlowNodeChildren<'_>
impl<'tree> Eq for FlowNodeChildren<'tree>
impl<'tree> StructuralPartialEq for FlowNodeChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for FlowNodeChildren<'tree>
impl<'tree> RefUnwindSafe for FlowNodeChildren<'tree>
impl<'tree> Send for FlowNodeChildren<'tree>
impl<'tree> Sync for FlowNodeChildren<'tree>
impl<'tree> Unpin for FlowNodeChildren<'tree>
impl<'tree> UnsafeUnpin for FlowNodeChildren<'tree>
impl<'tree> UnwindSafe for FlowNodeChildren<'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