pub trait DOMDocumentFragmentExt: 'static {
Show 15 methods fn child_element_count(&self) -> c_ulong; fn children(&self) -> Option<DOMHTMLCollection>; fn element_by_id(&self, elementId: &str) -> Option<DOMElement>; fn first_element_child(&self) -> Option<DOMElement>; fn last_element_child(&self) -> Option<DOMElement>; fn query_selector(&self, selectors: &str) -> Result<DOMElement, Error>; fn query_selector_all(&self, selectors: &str) -> Result<DOMNodeList, Error>; fn get_property_child_element_count(&self) -> c_ulong; fn get_property_children(&self) -> Option<DOMHTMLCollection>; fn get_property_first_element_child(&self) -> Option<DOMElement>; fn get_property_last_element_child(&self) -> Option<DOMElement>; fn connect_child_element_count_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_children_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_first_element_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_last_element_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Required Methods

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gulong

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLCollection

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

elementId

A gchar

Returns

A DOMElement

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMElement

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMElement

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

selectors

A gchar

Returns

A DOMElement

Available on crate feature v2_16 only.
Deprecated since 2.22

Use JavaScriptCore API instead

selectors

A gchar

Returns

A DOMNodeList

Implementors