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]
Trait Implementations
impl<N: Clone + TNode> Clone for SendNode<N>
[src]
fn clone(&self) -> SendNode<N>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<N: Debug + TNode> Debug for SendNode<N>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<N: PartialEq + TNode> PartialEq for SendNode<N>
[src]
fn eq(&self, __arg_0: &SendNode<N>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SendNode<N>) -> bool
[src]
This method tests for !=
.