Trait vimwiki::AsChildrenSlice[][src]

pub trait AsChildrenSlice {
    type Child;
    fn as_children_slice(&self) -> &[Self::Child]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
; }
Expand description

Represents a trait that provides the ability to get the children of an element as a slice

Associated Types

The type of child contained within

Required methods

Returns a slice to children contained within

Implementors