pub enum Todo {
Todo,
}Variants§
Todo
Trait Implementations§
Source§impl<M: NodeMetadata> NodeWithMetadata<M> for Todo
impl<M: NodeMetadata> NodeWithMetadata<M> for Todo
Source§fn metadata(&self) -> M
fn metadata(&self) -> M
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§fn self_metadata(&self) -> M
fn self_metadata(&self) -> M
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§impl Ord for Todo
impl Ord for Todo
Source§impl PartialOrd for Todo
impl PartialOrd for Todo
Source§impl SemanticEq for Todo
impl SemanticEq for Todo
Source§fn semantic_eq(&self, _: &Self) -> bool
fn semantic_eq(&self, _: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl ToCursors for Todo
impl ToCursors for Todo
fn to_cursors(&self, _: &mut impl CursorSink)
impl Copy for Todo
impl Eq for Todo
impl StructuralPartialEq for Todo
Auto Trait Implementations§
impl Freeze for Todo
impl RefUnwindSafe for Todo
impl Send for Todo
impl Sync for Todo
impl Unpin for Todo
impl UnwindSafe for Todo
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