pub struct ChildrenMut<'a, 'b>(/* private fields */);
Expand description
A thin mutable wrapper around the children of HTMLTag
Implementations§
Source§impl<'a, 'b> ChildrenMut<'a, 'b>
impl<'a, 'b> ChildrenMut<'a, 'b>
Sourcepub fn top_mut(&mut self) -> &mut RawChildren
pub fn top_mut(&mut self) -> &mut RawChildren
Returns the topmost, direct children of this tag as a mutable slice.
See Children::top
for more details and examples.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for ChildrenMut<'a, 'b>
impl<'a, 'b> RefUnwindSafe for ChildrenMut<'a, 'b>
impl<'a, 'b> !Send for ChildrenMut<'a, 'b>
impl<'a, 'b> !Sync for ChildrenMut<'a, 'b>
impl<'a, 'b> Unpin for ChildrenMut<'a, 'b>
impl<'a, 'b> !UnwindSafe for ChildrenMut<'a, 'b>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more