[][src]Type Definition xml_dom::level2::RefNode

type RefNode = RcRefCell<NodeImpl>;

Opaque DOM tree node reference. This is the type used by this implementation as the concrete type for the NodeRef associated type in the Node trait.

This is the common response type for DOM actions and can be cast to specific traits either by-hand or using the xml_dom::convert module. Also, note that this type supportsPartialEq and so two nodes can be tested to ensure they are the same.

Trait Implementations

impl Attribute for RefNode[src]

impl CDataSection for RefNode[src]

impl CharacterData for RefNode[src]

impl Comment for RefNode[src]

impl Display for RefNode[src]

impl Document for RefNode[src]

impl DocumentDecl for RefNode[src]

impl DocumentFragment for RefNode[src]

impl DocumentType for RefNode[src]

impl Element for RefNode[src]

impl Entity for RefNode[src]

impl EntityReference for RefNode[src]

impl Namespaced for RefNode[src]

impl Node for RefNode[src]

type NodeRef = RefNode

The opaque reference type that wraps the implementation of a node within the DOM. Read more

impl Notation for RefNode[src]

impl ProcessingInstruction for RefNode[src]

impl Text for RefNode[src]