pub struct SetChildNodes {
pub method: SetChildNodesMethod,
pub params: SetChildNodesParams,
}Expand description
Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids. setChildNodes
Fields§
§method: SetChildNodesMethod§params: SetChildNodesParamsImplementations§
Source§impl SetChildNodes
impl SetChildNodes
pub const IDENTIFIER: &'static str = "DOM.setChildNodes"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetChildNodes
impl Clone for SetChildNodes
Source§fn clone(&self) -> SetChildNodes
fn clone(&self) -> SetChildNodes
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 Debug for SetChildNodes
impl Debug for SetChildNodes
Source§impl<'de> Deserialize<'de> for SetChildNodes
impl<'de> Deserialize<'de> for SetChildNodes
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<SetChildNodes> for BrowserProtocolEvents
impl From<SetChildNodes> for BrowserProtocolEvents
Source§fn from(v: SetChildNodes) -> Self
fn from(v: SetChildNodes) -> Self
Converts to this type from the input type.
Source§impl From<SetChildNodes> for DomEvents
impl From<SetChildNodes> for DomEvents
Source§fn from(v: SetChildNodes) -> Self
fn from(v: SetChildNodes) -> Self
Converts to this type from the input type.
Source§impl From<SetChildNodes> for Event
impl From<SetChildNodes> for Event
Source§fn from(v: SetChildNodes) -> Self
fn from(v: SetChildNodes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetChildNodes
impl PartialEq for SetChildNodes
Source§impl Serialize for SetChildNodes
impl Serialize for SetChildNodes
Source§impl TryFrom<BrowserProtocolEvents> for SetChildNodes
impl TryFrom<BrowserProtocolEvents> for SetChildNodes
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <SetChildNodes as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <SetChildNodes as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomEvents> for SetChildNodes
impl TryFrom<DomEvents> for SetChildNodes
Source§impl TryFrom<Event> for SetChildNodes
impl TryFrom<Event> for SetChildNodes
impl StructuralPartialEq for SetChildNodes
Auto Trait Implementations§
impl Freeze for SetChildNodes
impl RefUnwindSafe for SetChildNodes
impl Send for SetChildNodes
impl Sync for SetChildNodes
impl Unpin for SetChildNodes
impl UnsafeUnpin for SetChildNodes
impl UnwindSafe for SetChildNodes
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