Trait IntoChildren

Source
pub trait IntoChildren {
    type Child;

    // Required method
    fn into_children(self) -> Vec<Self::Child>;
}
Expand description

Represents a trait that provides the ability to get the children of an element through a consuming conversion

Required Associated Types§

Source

type Child

The type of child contained within

Required Methods§

Source

fn into_children(self) -> Vec<Self::Child>

Returns a vec of children contained within

Implementors§

Source§

impl<'a> IntoChildren for BlockElement<'a>

Source§

impl<'a> IntoChildren for Cell<'a>

Source§

impl<'a> IntoChildren for DecoratedText<'a>

Source§

impl<'a> IntoChildren for DecoratedTextContent<'a>

Source§

impl<'a> IntoChildren for Element<'a>

Source§

impl<'a> IntoChildren for InlineBlockElement<'a>

Source§

impl<'a> IntoChildren for InlineElement<'a>

Source§

impl<'a> IntoChildren for DefinitionList<'a>

Source§

impl<'a> IntoChildren for DefinitionListValue<'a>

Source§

impl<'a> IntoChildren for Header<'a>

Source§

impl<'a> IntoChildren for InlineElementContainer<'a>

Source§

impl<'a> IntoChildren for List<'a>

Source§

impl<'a> IntoChildren for ListItem<'a>

Source§

impl<'a> IntoChildren for ListItemContents<'a>

Source§

impl<'a> IntoChildren for Page<'a>

Source§

impl<'a> IntoChildren for Paragraph<'a>

Source§

impl<'a> IntoChildren for Table<'a>