pub struct GetOuterHTMLParams {
pub nodeId: Option<NodeId>,
pub backendNodeId: Option<BackendNodeId>,
pub objectId: Option<RemoteObjectId>,
pub includeShadowDOM: Option<bool>,
}Expand description
Returns node’s HTML markup.
Fields§
§nodeId: Option<NodeId>Identifier of the node.
backendNodeId: Option<BackendNodeId>Identifier of the backend node.
objectId: Option<RemoteObjectId>JavaScript object id of the node wrapper.
includeShadowDOM: Option<bool>Include all shadow roots. Equals to false if not specified.
Implementations§
Trait Implementations§
Source§impl CdpCommand for GetOuterHTMLParams
impl CdpCommand for GetOuterHTMLParams
Source§impl Clone for GetOuterHTMLParams
impl Clone for GetOuterHTMLParams
Source§fn clone(&self) -> GetOuterHTMLParams
fn clone(&self) -> GetOuterHTMLParams
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 GetOuterHTMLParams
impl Debug for GetOuterHTMLParams
Source§impl Default for GetOuterHTMLParams
impl Default for GetOuterHTMLParams
Source§fn default() -> GetOuterHTMLParams
fn default() -> GetOuterHTMLParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOuterHTMLParams
impl<'de> Deserialize<'de> for GetOuterHTMLParams
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
Auto Trait Implementations§
impl Freeze for GetOuterHTMLParams
impl RefUnwindSafe for GetOuterHTMLParams
impl Send for GetOuterHTMLParams
impl Sync for GetOuterHTMLParams
impl Unpin for GetOuterHTMLParams
impl UnsafeUnpin for GetOuterHTMLParams
impl UnwindSafe for GetOuterHTMLParams
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