Finalizes the element with no children.
(self)
| 455 | |
| 456 | /// Finalizes the element with no children. |
| 457 | pub fn empty(self) -> Id { |
| 458 | self.children(|_| {}) |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | impl<'ply, CustomElementData: Clone + Default + std::fmt::Debug> core::ops::Deref |