Trait cvar::IList [] [src]

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

List node interface.

Provides an object safe interface for lists, type erasing its implementation.

Required Methods

fn as_visit(&self) -> &IVisit

Returns the visitor interface to access its children.

Trait Implementations

impl<'a> Debug for &'a IList
[src]

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

Formats the value using the given formatter.

Implementors