pub struct GetFrameTree {
pub method: GetFrameTreeMethod,
pub params: GetFrameTreeParams,
}Expand description
Returns present frame tree structure. getFrameTree
Fields§
§method: GetFrameTreeMethod§params: GetFrameTreeParamsImplementations§
Source§impl GetFrameTree
impl GetFrameTree
pub fn builder() -> GetFrameTreeBuilder
Source§impl GetFrameTree
impl GetFrameTree
pub const IDENTIFIER: &'static str = "Page.getFrameTree"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetFrameTree
impl Clone for GetFrameTree
Source§fn clone(&self) -> GetFrameTree
fn clone(&self) -> GetFrameTree
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 GetFrameTree
impl CommandResult for GetFrameTree
type Result = GetFrameTreeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetFrameTree
impl Debug for GetFrameTree
Source§impl<'de> Deserialize<'de> for GetFrameTree
impl<'de> Deserialize<'de> for GetFrameTree
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<GetFrameTree> for BrowserProtocolCommands
impl From<GetFrameTree> for BrowserProtocolCommands
Source§fn from(v: GetFrameTree) -> Self
fn from(v: GetFrameTree) -> Self
Converts to this type from the input type.
Source§impl From<GetFrameTree> for Command
impl From<GetFrameTree> for Command
Source§fn from(v: GetFrameTree) -> Self
fn from(v: GetFrameTree) -> Self
Converts to this type from the input type.
Source§impl From<GetFrameTree> for PageCommands
impl From<GetFrameTree> for PageCommands
Source§fn from(v: GetFrameTree) -> Self
fn from(v: GetFrameTree) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetFrameTree
impl PartialEq for GetFrameTree
Source§impl Serialize for GetFrameTree
impl Serialize for GetFrameTree
Source§impl TryFrom<BrowserProtocolCommands> for GetFrameTree
impl TryFrom<BrowserProtocolCommands> for GetFrameTree
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, <GetFrameTree as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetFrameTree as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetFrameTree
impl TryFrom<Command> for GetFrameTree
Source§impl TryFrom<PageCommands> for GetFrameTree
impl TryFrom<PageCommands> for GetFrameTree
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <GetFrameTree as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <GetFrameTree as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetFrameTree
Auto Trait Implementations§
impl Freeze for GetFrameTree
impl RefUnwindSafe for GetFrameTree
impl Send for GetFrameTree
impl Sync for GetFrameTree
impl Unpin for GetFrameTree
impl UnsafeUnpin for GetFrameTree
impl UnwindSafe for GetFrameTree
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