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§
Required Methods§
Sourcefn as_children_mut_slice(&mut self) -> &mut [Self::Child]
fn as_children_mut_slice(&mut self) -> &mut [Self::Child]
Returns a mutable slice to children contained within