[][src]Struct arwa::DocumentFragment

pub struct DocumentFragment { /* fields omitted */ }

Methods

impl DocumentFragment[src]

pub fn query_id(&self, id: &str) -> Option<GenericElement>[src]

pub fn query_selector_first(
    &self,
    selector: &str
) -> Result<Option<GenericElement>, SyntaxError>
[src]

pub fn query_selector_all(
    &self,
    selector: &str
) -> Result<QuerySelectorAll, SyntaxError>
[src]

pub fn child_elements(&self) -> DocumentFragmentChildElements[src]

Trait Implementations

impl AsRef<DocumentFragment> for DocumentFragment[src]

impl AsRef<Node> for DocumentFragment[src]

impl From<DocumentFragment> for DocumentFragment[src]

impl Node for DocumentFragment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.