Trait vimwiki_core::IntoChildren[][src]

pub trait IntoChildren {
    type Child;
    fn into_children(self) -> Vec<Self::Child>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

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

Associated Types

The type of child contained within

Required methods

Returns a vec of children contained within

Implementors