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