Trait AsChildrenMutSlice

Source
pub trait AsChildrenMutSlice {
    type Child;

    // Required method
    fn as_children_mut_slice(&mut self) -> &mut [Self::Child];
}
Expand description

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

Required Associated Types§

Source

type Child

The type of child contained within

Required Methods§

Source

fn as_children_mut_slice(&mut self) -> &mut [Self::Child]

Returns a mutable slice to children contained within

Implementors§