Struct sauron::prelude::mt_dom::patch::RemoveAttributes[]

pub struct RemoveAttributes<'a, NS, TAG, ATT, VAL, EVENT> where
    TAG: PartialEq<TAG> + Clone + Debug,
    NS: PartialEq<NS> + Clone + Debug,
    ATT: PartialEq<ATT> + Clone + Debug,
    VAL: PartialEq<VAL> + Clone + Debug,
    EVENT: PartialEq<EVENT> + Clone + Debug
{ pub tag: &'a TAG, pub node_idx: usize, pub new_node_idx: usize, pub attrs: Vec<&'a Attribute<NS, ATT, VAL, EVENT>, Global>, }
Expand description

Remove attributes that the old node had that the new node doesn’t

Fields

tag: &'a TAG

the tag of the node to be remove this is only used for verifying that we are patching the correct node

node_idx: usize

index of the node we are going to patch relative to the application root node

new_node_idx: usize

the new node_idx of the node we are removing attributes from

attrs: Vec<&'a Attribute<NS, ATT, VAL, EVENT>, Global>

attributes that are to be removed from this target node

Implementations

Add attributes that the new node has that the old node does not Note: the attributes is not a reference since attributes of same name are merged to produce a new unify attribute

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.