[][src]Trait cvar::IList

pub trait IList: INode {
    fn as_visit_mut(&mut self) -> &mut dyn IVisit;
}

List of child nodes.

An IList implements the node interface with its associated name and description metadata.

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

Required methods

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

Returns a visitor trait object to visit the children.

Loading content...

Trait Implementations

impl<'_> Debug for dyn IList + '_[src]

Implementors

impl<'a, V: IVisit> IList for List<'a, V>[src]

Loading content...