IList

Trait IList 

Source
pub trait IList: INode {
    // Required method
    fn as_ivisit(&mut self) -> &mut dyn IVisit;
}
Expand description

List of child nodes.

You probably want to implement the IVisit trait instead of this one.

Required Methods§

Source

fn as_ivisit(&mut self) -> &mut dyn IVisit

Returns a visitor trait object to visit the children.

Trait Implementations§

Source§

impl Debug for dyn IList + '_

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

Source§

impl<'a, 'x> IList for List<'a, 'x>