Struct xpcom::interfaces::nsIDOMCharacterData [] [src]

#[repr(C)]
pub struct nsIDOMCharacterData { /* fields omitted */ }

interface nsIDOMCharacterData : nsIDOMNode

Methods

impl nsIDOMCharacterData
[src]

[src]

Cast this nsIDOMCharacterData to one of its base interfaces.

impl nsIDOMCharacterData
[src]

[src]

/**
 * The nsIDOMCharacterData interface extends nsIDOMNode with a set of
 * attributes and methods for accessing character data in the DOM.
 *
 * For more information on this interface please see
 * http://www.w3.org/TR/DOM-Level-2-Core/
 */

attribute DOMString data;

[src]

/**
 * The nsIDOMCharacterData interface extends nsIDOMNode with a set of
 * attributes and methods for accessing character data in the DOM.
 *
 * For more information on this interface please see
 * http://www.w3.org/TR/DOM-Level-2-Core/
 */

attribute DOMString data;

[src]

readonly attribute unsigned long length;

[src]

DOMString substringData (in unsigned long offset, in unsigned long count) raises (DOMException);

[src]

void appendData (in DOMString arg) raises (DOMException);

[src]

void insertData (in unsigned long offset, in DOMString arg) raises (DOMException);

[src]

void deleteData (in unsigned long offset, in unsigned long count) raises (DOMException);

[src]

void replaceData (in unsigned long offset, in unsigned long count, in DOMString arg) raises (DOMException);

Methods from Deref<Target = nsIDOMNode>

[src]

Cast this nsIDOMNode to one of its base interfaces.

[src]

readonly attribute DOMString nodeName;

[src]

attribute DOMString nodeValue;

[src]

attribute DOMString nodeValue;

[src]

readonly attribute unsigned short nodeType;

[src]

readonly attribute nsIDOMNode parentNode;

[src]

readonly attribute nsIDOMNodeList childNodes;

[src]

readonly attribute nsIDOMNode firstChild;

[src]

readonly attribute nsIDOMNode lastChild;

[src]

readonly attribute nsIDOMNode previousSibling;

[src]

readonly attribute nsIDOMNode nextSibling;

[src]

readonly attribute nsIDOMDocument ownerDocument;

[src]

nsIDOMNode removeChild (in nsIDOMNode oldChild) raises (DOMException);

[src]

boolean hasChildNodes ();

[src]

readonly attribute DOMString namespaceURI;

[src]

readonly attribute DOMString prefix;

[src]

readonly attribute DOMString localName;

[src]

attribute DOMString textContent;

[src]

attribute DOMString textContent;

Trait Implementations

impl XpCom for nsIDOMCharacterData
[src]

IID: nsIID = nsID(1091150546, 59311, 17501, [187, 114, 199, 201, 184, 117, 243, 94])

[src]

Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more

impl RefCounted for nsIDOMCharacterData
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for nsIDOMCharacterData
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.