pub struct HideHighlight {
pub method: HideHighlightMethod,
pub params: HideHighlightParams,
}Expand description
Hides any highlight. hideHighlight
Fields§
§method: HideHighlightMethod§params: HideHighlightParamsImplementations§
Source§impl HideHighlight
impl HideHighlight
pub fn builder() -> HideHighlightBuilder
Source§impl HideHighlight
impl HideHighlight
pub const IDENTIFIER: &'static str = "DOM.hideHighlight"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for HideHighlight
impl Clone for HideHighlight
Source§fn clone(&self) -> HideHighlight
fn clone(&self) -> HideHighlight
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 HideHighlight
impl CommandResult for HideHighlight
type Result = HideHighlightResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for HideHighlight
impl Debug for HideHighlight
Source§impl<'de> Deserialize<'de> for HideHighlight
impl<'de> Deserialize<'de> for HideHighlight
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<HideHighlight> for BrowserProtocolCommands
impl From<HideHighlight> for BrowserProtocolCommands
Source§fn from(v: HideHighlight) -> Self
fn from(v: HideHighlight) -> Self
Converts to this type from the input type.
Source§impl From<HideHighlight> for Command
impl From<HideHighlight> for Command
Source§fn from(v: HideHighlight) -> Self
fn from(v: HideHighlight) -> Self
Converts to this type from the input type.
Source§impl From<HideHighlight> for DomCommands
impl From<HideHighlight> for DomCommands
Source§fn from(v: HideHighlight) -> Self
fn from(v: HideHighlight) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HideHighlight
impl PartialEq for HideHighlight
Source§impl Serialize for HideHighlight
impl Serialize for HideHighlight
Source§impl TryFrom<BrowserProtocolCommands> for HideHighlight
impl TryFrom<BrowserProtocolCommands> for HideHighlight
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, <HideHighlight as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <HideHighlight as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for HideHighlight
impl TryFrom<Command> for HideHighlight
Source§impl TryFrom<DomCommands> for HideHighlight
impl TryFrom<DomCommands> for HideHighlight
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, <HideHighlight as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <HideHighlight as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for HideHighlight
Auto Trait Implementations§
impl Freeze for HideHighlight
impl RefUnwindSafe for HideHighlight
impl Send for HideHighlight
impl Sync for HideHighlight
impl Unpin for HideHighlight
impl UnsafeUnpin for HideHighlight
impl UnwindSafe for HideHighlight
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