[][src]Struct mt_dom::patch::InsertNode

pub struct InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG> {
    pub tag: Option<&'a TAG>,
    pub node_idx: NodeIdx,
    pub node: &'a Node<NS, TAG, ATT, VAL, EVENT, MSG>,
}

InsertNode patch contains the a node to insert into

Fields

tag: Option<&'a TAG>

the tag of the target node to be inserted

node_idx: NodeIdx

the target node_idx of which our node will be inserted before it.

node: &'a Node<NS, TAG, ATT, VAL, EVENT, MSG>

the node to be inserted

Implementations

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>[src]

pub fn new(
    tag: Option<&'a TAG>,
    node_idx: NodeIdx,
    node: &'a Node<NS, TAG, ATT, VAL, EVENT, MSG>
) -> Self
[src]

create a new InsertNode patch

Trait Implementations

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> Debug for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG> where
    NS: Debug,
    TAG: Debug,
    ATT: Debug,
    VAL: Debug
[src]

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> From<InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for Patch<'a, NS, TAG, ATT, VAL, EVENT, MSG>[src]

impl<'a, NS: PartialEq, TAG: PartialEq, ATT: PartialEq, VAL: PartialEq, EVENT: PartialEq, MSG: PartialEq> PartialEq<InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>> for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>[src]

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> StructuralPartialEq for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>[src]

Auto Trait Implementations

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !RefUnwindSafe for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !Send for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !Sync for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> Unpin for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>

impl<'a, NS, TAG, ATT, VAL, EVENT, MSG> !UnwindSafe for InsertNode<'a, NS, TAG, ATT, VAL, EVENT, MSG>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.