Struct mt_dom::patch::AddAttributes [−][src]
pub struct AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG> { pub tag: &'a TAG, pub node_idx: NodeIdx, pub new_node_idx: NodeIdx, pub attrs: Vec<&'a Attribute<NS, ATT, VAL, EVENT, MSG>>, }
Expand description
Add attributes
Fields
tag: &'a TAG
node tag use for verifying that the we are patching the correct node which should match the same tag
node_idx: NodeIdx
index of the node we are going to patch
new_node_idx: NodeIdx
new node_idx of the node we are adding an attribute to
attrs: Vec<&'a Attribute<NS, ATT, VAL, EVENT, MSG>>
the attributes to be patched into the 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
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> From<AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for Patch<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> From<AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for Patch<'a, NS, TAG, ATT, VAL, EVENT, MSG>
Performs the conversion.
impl<'a, NS: PartialEq, TAG: PartialEq, ATT: PartialEq, VAL: PartialEq, EVENT: PartialEq, MSG: PartialEq> PartialEq<AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS: PartialEq, TAG: PartialEq, ATT: PartialEq, VAL: PartialEq, EVENT: PartialEq, MSG: PartialEq> PartialEq<AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> StructuralPartialEq for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
Auto Trait Implementations
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !RefUnwindSafe for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !Send for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !Sync for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> Unpin for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>
impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !UnwindSafe for AddAttributes<'a, NS, TAG, ATT, VAL, EVENT, MSG>