pub struct GetOuterHtml {
pub method: GetOuterHtmlMethod,
pub params: GetOuterHtmlParams,
}Expand description
Returns node’s HTML markup. getOuterHTML
Fields§
§method: GetOuterHtmlMethod§params: GetOuterHtmlParamsImplementations§
Source§impl GetOuterHtml
impl GetOuterHtml
pub fn builder() -> GetOuterHtmlBuilder
Source§impl GetOuterHtml
impl GetOuterHtml
pub const IDENTIFIER: &'static str = "DOM.getOuterHTML"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetOuterHtml
impl Clone for GetOuterHtml
Source§fn clone(&self) -> GetOuterHtml
fn clone(&self) -> GetOuterHtml
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 GetOuterHtml
impl CommandResult for GetOuterHtml
type Result = GetOuterHtmlResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetOuterHtml
impl Debug for GetOuterHtml
Source§impl<'de> Deserialize<'de> for GetOuterHtml
impl<'de> Deserialize<'de> for GetOuterHtml
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<GetOuterHtml> for BrowserProtocolCommands
impl From<GetOuterHtml> for BrowserProtocolCommands
Source§fn from(v: GetOuterHtml) -> Self
fn from(v: GetOuterHtml) -> Self
Converts to this type from the input type.
Source§impl From<GetOuterHtml> for Command
impl From<GetOuterHtml> for Command
Source§fn from(v: GetOuterHtml) -> Self
fn from(v: GetOuterHtml) -> Self
Converts to this type from the input type.
Source§impl From<GetOuterHtml> for DomCommands
impl From<GetOuterHtml> for DomCommands
Source§fn from(v: GetOuterHtml) -> Self
fn from(v: GetOuterHtml) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetOuterHtml
impl PartialEq for GetOuterHtml
Source§impl Serialize for GetOuterHtml
impl Serialize for GetOuterHtml
Source§impl TryFrom<BrowserProtocolCommands> for GetOuterHtml
impl TryFrom<BrowserProtocolCommands> for GetOuterHtml
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, <GetOuterHtml as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetOuterHtml as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetOuterHtml
impl TryFrom<Command> for GetOuterHtml
Source§impl TryFrom<DomCommands> for GetOuterHtml
impl TryFrom<DomCommands> for GetOuterHtml
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, <GetOuterHtml as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetOuterHtml as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetOuterHtml
Auto Trait Implementations§
impl Freeze for GetOuterHtml
impl RefUnwindSafe for GetOuterHtml
impl Send for GetOuterHtml
impl Sync for GetOuterHtml
impl Unpin for GetOuterHtml
impl UnsafeUnpin for GetOuterHtml
impl UnwindSafe for GetOuterHtml
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