[−][src]Struct stdweb::web::ShadowRoot
The ShadowRoot interface of the Shadow DOM API is the root node of a DOM
subtree that is rendered separately from a document's main DOM tree.
Methods
impl ShadowRoot[src]
pub fn mode(&self) -> ShadowRootMode[src]
The mode property of the ShadowRoot specifies its mode.
pub fn host(&self) -> Element[src]
The host read-only property of the ShadowRoot returns a reference to the DOM element
the ShadowRoot is attached to.
Trait Implementations
impl JsSerialize for ShadowRoot[src]
impl TryFrom<EventTarget> for ShadowRoot[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 ShadowRoot[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 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 TryFrom<ShadowRoot> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: ShadowRoot) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for ShadowRoot[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 ShadowRoot[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 ShadowRoot[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 ShadowRoot[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 InstanceOf for ShadowRoot[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for ShadowRoot[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEventTarget for ShadowRoot[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 ShadowRoot[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 ShadowRoot[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<ShadowRoot> for EventTarget[src]
fn from(value: ShadowRoot) -> Self[src]
impl From<ShadowRoot> for Node[src]
fn from(value: ShadowRoot) -> Self[src]
impl From<ShadowRoot> for DocumentFragment[src]
fn from(value: ShadowRoot) -> Self[src]
impl From<ShadowRoot> for Reference[src]
fn from(value: ShadowRoot) -> Self[src]
impl Clone for ShadowRoot[src]
fn clone(&self) -> ShadowRoot[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl AsRef<Reference> for ShadowRoot[src]
impl Eq for ShadowRoot[src]
impl PartialEq<ShadowRoot> for ShadowRoot[src]
fn eq(&self, other: &ShadowRoot) -> bool[src]
fn ne(&self, other: &ShadowRoot) -> bool[src]
impl Debug for ShadowRoot[src]
Auto Trait Implementations
impl Send for ShadowRoot
impl Sync for ShadowRoot
impl Unpin for ShadowRoot
impl UnwindSafe for ShadowRoot
impl RefUnwindSafe for ShadowRoot
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> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,