pub struct GetQueryingDescendantsForContainerParams {
pub node_id: NodeId,
}Expand description
Returns the descendants of a container query container that have container queries against this container. getQueryingDescendantsForContainer
Fields§
§node_id: NodeIdId of the container node to find querying descendants from.
Implementations§
Source§impl GetQueryingDescendantsForContainerParams
impl GetQueryingDescendantsForContainerParams
pub const IDENTIFIER: &'static str = "DOM.getQueryingDescendantsForContainer"
Trait Implementations§
Source§impl Clone for GetQueryingDescendantsForContainerParams
impl Clone for GetQueryingDescendantsForContainerParams
Source§fn clone(&self) -> GetQueryingDescendantsForContainerParams
fn clone(&self) -> GetQueryingDescendantsForContainerParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for GetQueryingDescendantsForContainerParams
impl<'de> Deserialize<'de> for GetQueryingDescendantsForContainerParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for GetQueryingDescendantsForContainerParams
impl Method for GetQueryingDescendantsForContainerParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl PartialEq for GetQueryingDescendantsForContainerParams
impl PartialEq for GetQueryingDescendantsForContainerParams
Source§fn eq(&self, other: &GetQueryingDescendantsForContainerParams) -> bool
fn eq(&self, other: &GetQueryingDescendantsForContainerParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetQueryingDescendantsForContainerParams
Auto Trait Implementations§
impl Freeze for GetQueryingDescendantsForContainerParams
impl RefUnwindSafe for GetQueryingDescendantsForContainerParams
impl Send for GetQueryingDescendantsForContainerParams
impl Sync for GetQueryingDescendantsForContainerParams
impl Unpin for GetQueryingDescendantsForContainerParams
impl UnwindSafe for GetQueryingDescendantsForContainerParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more