Struct style::dom::SendNode [] [src]

pub struct SendNode<N: TNode>(_);

TNode and TElement aren't Send because we want to be careful and explicit about our parallel traversal. However, there are certain situations (including but not limited to the traversal) where we need to send DOM objects to other threads.

That's the reason why SendNode exists.

Methods

impl<N: TNode> SendNode<N>
[src]

[src]

Unsafely construct a SendNode.

Trait Implementations

impl<N: Clone + TNode> Clone for SendNode<N>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: Debug + TNode> Debug for SendNode<N>
[src]

[src]

Formats the value using the given formatter. Read more

impl<N: PartialEq + TNode> PartialEq for SendNode<N>
[src]

[src]

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

[src]

This method tests for !=.

impl<N: TNode> Send for SendNode<N>
[src]

impl<N: TNode> Deref for SendNode<N>
[src]

The resulting type after dereferencing.

Important traits for &'a mut W
[src]

Dereferences the value.