pub trait MutationRecordMethods {
    // Required methods
    fn Type(&self) -> DOMString;
    fn Target(&self) -> Root<Dom<Node>>;
    fn AddedNodes(&self) -> Root<Dom<NodeList>>;
    fn RemovedNodes(&self) -> Root<Dom<NodeList>>;
    fn GetPreviousSibling(&self) -> Option<Root<Dom<Node>>>;
    fn GetNextSibling(&self) -> Option<Root<Dom<Node>>>;
    fn GetAttributeName(&self) -> Option<DOMString>;
    fn GetAttributeNamespace(&self) -> Option<DOMString>;
    fn GetOldValue(&self) -> Option<DOMString>;
}

Required Methods§

Implementors§