[−][src]Struct stdweb::web::DocumentFragment
A reference to a JavaScript object DocumentFragment.
Trait Implementations
impl JsSerialize for DocumentFragment[src]
impl TryFrom<EventTarget> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: EventTarget) -> Result<Self, Self::Error>[src]
impl TryFrom<Node> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Node) -> Result<Self, Self::Error>[src]
impl TryFrom<DocumentFragment> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: DocumentFragment) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Reference> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
impl TryFrom<Value> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Value> for DocumentFragment[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
impl TryFrom<DocumentFragment> for ShadowRoot[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: DocumentFragment) -> Result<Self, Self::Error>[src]
impl InstanceOf for DocumentFragment[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for DocumentFragment[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEventTarget for DocumentFragment[src]
fn add_event_listener<T, F>(&self, listener: F) -> EventListenerHandle where
T: ConcreteEvent,
F: FnMut(T) + 'static, [src]
T: ConcreteEvent,
F: FnMut(T) + 'static,
fn dispatch_event<T: IEvent>(&self, event: &T) -> Result<bool, TODO>[src]
impl INode for DocumentFragment[src]
fn as_node(&self) -> &Node[src]
fn append_child<T: INode>(&self, child: &T)[src]
fn remove_child<T: INode>(&self, child: &T) -> Result<Node, NotFoundError>[src]
fn clone_node(&self, kind: CloneKind) -> Result<Self, TODO>[src]
fn contains<T: INode>(&self, node: &T) -> bool[src]
fn insert_before<T: INode, U: INode>(
&self,
new_node: &T,
reference_node: &U
) -> Result<Node, InsertNodeError>[src]
&self,
new_node: &T,
reference_node: &U
) -> Result<Node, InsertNodeError>
fn replace_child<T: INode, U: INode>(
&self,
new_child: &T,
old_child: &U
) -> Result<Node, InsertNodeError>[src]
&self,
new_child: &T,
old_child: &U
) -> Result<Node, InsertNodeError>
fn parent_node(&self) -> Option<Node>[src]
fn first_child(&self) -> Option<Node>[src]
fn last_child(&self) -> Option<Node>[src]
fn next_sibling(&self) -> Option<Node>[src]
fn node_name(&self) -> String[src]
fn node_type(&self) -> NodeType[src]
fn node_value(&self) -> Option<String>[src]
fn set_node_value(&self, value: Option<&str>)[src]
fn owner_document(&self) -> Option<Document>[src]
fn parent_element(&self) -> Option<Element>[src]
fn previous_sibling(&self) -> Option<Node>[src]
fn text_content(&self) -> Option<String>[src]
fn set_text_content(&self, text: &str)[src]
fn child_nodes(&self) -> NodeList[src]
fn base_uri(&self) -> String[src]
fn has_child_nodes(&self) -> bool[src]
fn is_default_namespace(&self, namespace: &str) -> bool[src]
fn is_equal_node<T: INode>(&self, node: &T) -> bool[src]
fn is_same_node<T: INode>(&self, node: &T) -> bool[src]
fn lookup_prefix(&self, namespace: &str) -> Option<String>[src]
fn lookup_namespace_uri(&self, prefix: &str) -> Option<String>[src]
fn normalize(&self)[src]
impl IParentNode for DocumentFragment[src]
fn query_selector(&self, selector: &str) -> Result<Option<Element>, SyntaxError>[src]
fn query_selector_all(&self, selector: &str) -> Result<NodeList, SyntaxError>[src]
impl From<DocumentFragment> for EventTarget[src]
fn from(value: DocumentFragment) -> Self[src]
impl From<DocumentFragment> for Node[src]
fn from(value: DocumentFragment) -> Self[src]
impl From<DocumentFragment> for Reference[src]
fn from(value: DocumentFragment) -> Self[src]
impl From<ShadowRoot> for DocumentFragment[src]
fn from(value: ShadowRoot) -> Self[src]
impl Clone for DocumentFragment[src]
fn clone(&self) -> DocumentFragment[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl AsRef<Reference> for DocumentFragment[src]
impl Eq for DocumentFragment[src]
impl PartialEq<DocumentFragment> for DocumentFragment[src]
fn eq(&self, other: &DocumentFragment) -> bool[src]
fn ne(&self, other: &DocumentFragment) -> bool[src]
impl Debug for DocumentFragment[src]
Auto Trait Implementations
impl Send for DocumentFragment
impl Sync for DocumentFragment
impl Unpin for DocumentFragment
impl RefUnwindSafe for DocumentFragment
impl UnwindSafe for DocumentFragment
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,