Trait vimwiki::AsChildrenMutSlice[][src]

pub trait AsChildrenMutSlice {
    type Child;
    fn as_children_mut_slice(&mut self) -> &mut [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 mut slice

Associated Types

The type of child contained within

Required methods

Returns a mutable slice to children contained within

Implementors