pub struct GetQueryingDescendantsForContainer {
pub method: GetQueryingDescendantsForContainerMethod,
pub params: GetQueryingDescendantsForContainerParams,
}Expand description
Returns the descendants of a container query container that have container queries against this container. getQueryingDescendantsForContainer
Fields§
§method: GetQueryingDescendantsForContainerMethod§params: GetQueryingDescendantsForContainerParamsImplementations§
Source§impl GetQueryingDescendantsForContainer
impl GetQueryingDescendantsForContainer
pub const IDENTIFIER: &'static str = "DOM.getQueryingDescendantsForContainer"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetQueryingDescendantsForContainer
impl Clone for GetQueryingDescendantsForContainer
Source§fn clone(&self) -> GetQueryingDescendantsForContainer
fn clone(&self) -> GetQueryingDescendantsForContainer
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 CommandResult for GetQueryingDescendantsForContainer
impl CommandResult for GetQueryingDescendantsForContainer
type Result = GetQueryingDescendantsForContainerResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for GetQueryingDescendantsForContainer
impl<'de> Deserialize<'de> for GetQueryingDescendantsForContainer
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 From<GetQueryingDescendantsForContainer> for BrowserProtocolCommands
impl From<GetQueryingDescendantsForContainer> for BrowserProtocolCommands
Source§fn from(v: GetQueryingDescendantsForContainer) -> Self
fn from(v: GetQueryingDescendantsForContainer) -> Self
Converts to this type from the input type.
Source§impl From<GetQueryingDescendantsForContainer> for Command
impl From<GetQueryingDescendantsForContainer> for Command
Source§fn from(v: GetQueryingDescendantsForContainer) -> Self
fn from(v: GetQueryingDescendantsForContainer) -> Self
Converts to this type from the input type.
Source§impl From<GetQueryingDescendantsForContainer> for DomCommands
impl From<GetQueryingDescendantsForContainer> for DomCommands
Source§fn from(v: GetQueryingDescendantsForContainer) -> Self
fn from(v: GetQueryingDescendantsForContainer) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetQueryingDescendantsForContainer
impl PartialEq for GetQueryingDescendantsForContainer
Source§fn eq(&self, other: &GetQueryingDescendantsForContainer) -> bool
fn eq(&self, other: &GetQueryingDescendantsForContainer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for GetQueryingDescendantsForContainer
impl TryFrom<BrowserProtocolCommands> for GetQueryingDescendantsForContainer
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetQueryingDescendantsForContainer as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetQueryingDescendantsForContainer as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<DomCommands> for GetQueryingDescendantsForContainer
impl TryFrom<DomCommands> for GetQueryingDescendantsForContainer
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <GetQueryingDescendantsForContainer as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetQueryingDescendantsForContainer as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetQueryingDescendantsForContainer
Auto Trait Implementations§
impl Freeze for GetQueryingDescendantsForContainer
impl RefUnwindSafe for GetQueryingDescendantsForContainer
impl Send for GetQueryingDescendantsForContainer
impl Sync for GetQueryingDescendantsForContainer
impl Unpin for GetQueryingDescendantsForContainer
impl UnsafeUnpin for GetQueryingDescendantsForContainer
impl UnwindSafe for GetQueryingDescendantsForContainer
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