pub trait RelmIterChildrenExt: ContainerChild + IsA<Widget> {
    // Provided method
    fn iter_children(&self) -> Box<dyn DoubleEndedIterator<Item = Self::Child>> { ... }
}
Expand description

Widget types which allow iteration over their children.

Provided Methods§

source

fn iter_children(&self) -> Box<dyn DoubleEndedIterator<Item = Self::Child>>

Returns an iterator over container children.

Implementations on Foreign Types§

source§

impl RelmIterChildrenExt for Box

source§

impl RelmIterChildrenExt for FlowBox

source§

impl RelmIterChildrenExt for Stack

source§

impl RelmIterChildrenExt for Grid

source§

fn iter_children(&self) -> Box<dyn DoubleEndedIterator<Item = Self::Child>>

source§

impl RelmIterChildrenExt for ListBox

source§

impl RelmIterChildrenExt for TabView

source§

fn iter_children(&self) -> Box<dyn DoubleEndedIterator<Item = Self::Child>>

Implementors§