pub struct ForceShowPopover {
pub method: ForceShowPopoverMethod,
pub params: ForceShowPopoverParams,
}Expand description
When enabling, this API force-opens the popover identified by nodeId and keeps it open until disabled. forceShowPopover
Fields§
§method: ForceShowPopoverMethod§params: ForceShowPopoverParamsImplementations§
Source§impl ForceShowPopover
impl ForceShowPopover
pub fn builder() -> ForceShowPopoverBuilder
Source§impl ForceShowPopover
impl ForceShowPopover
pub const IDENTIFIER: &'static str = "DOM.forceShowPopover"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ForceShowPopover
impl Clone for ForceShowPopover
Source§fn clone(&self) -> ForceShowPopover
fn clone(&self) -> ForceShowPopover
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 ForceShowPopover
impl CommandResult for ForceShowPopover
type Result = ForceShowPopoverResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ForceShowPopover
impl Debug for ForceShowPopover
Source§impl<'de> Deserialize<'de> for ForceShowPopover
impl<'de> Deserialize<'de> for ForceShowPopover
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<ForceShowPopover> for BrowserProtocolCommands
impl From<ForceShowPopover> for BrowserProtocolCommands
Source§fn from(v: ForceShowPopover) -> Self
fn from(v: ForceShowPopover) -> Self
Converts to this type from the input type.
Source§impl From<ForceShowPopover> for Command
impl From<ForceShowPopover> for Command
Source§fn from(v: ForceShowPopover) -> Self
fn from(v: ForceShowPopover) -> Self
Converts to this type from the input type.
Source§impl From<ForceShowPopover> for DomCommands
impl From<ForceShowPopover> for DomCommands
Source§fn from(v: ForceShowPopover) -> Self
fn from(v: ForceShowPopover) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ForceShowPopover
impl PartialEq for ForceShowPopover
Source§impl Serialize for ForceShowPopover
impl Serialize for ForceShowPopover
Source§impl TryFrom<BrowserProtocolCommands> for ForceShowPopover
impl TryFrom<BrowserProtocolCommands> for ForceShowPopover
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, <ForceShowPopover as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ForceShowPopover as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ForceShowPopover
impl TryFrom<Command> for ForceShowPopover
Source§impl TryFrom<DomCommands> for ForceShowPopover
impl TryFrom<DomCommands> for ForceShowPopover
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, <ForceShowPopover as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <ForceShowPopover as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ForceShowPopover
Auto Trait Implementations§
impl Freeze for ForceShowPopover
impl RefUnwindSafe for ForceShowPopover
impl Send for ForceShowPopover
impl Sync for ForceShowPopover
impl Unpin for ForceShowPopover
impl UnsafeUnpin for ForceShowPopover
impl UnwindSafe for ForceShowPopover
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