Trait hyper_ast::types::IterableChildren  
source · pub trait IterableChildren<T> {
    type ChildrenIter<'a>: Iterator<Item = &'a T>
       where T: 'a,
             Self: 'a;
    // Required methods
    fn iter_children(&self) -> Self::ChildrenIter<'_>;
    fn is_empty(&self) -> bool;
}