pub struct SetInterestGroupTracking {
pub method: SetInterestGroupTrackingMethod,
pub params: SetInterestGroupTrackingParams,
}Expand description
Enables/Disables issuing of interestGroupAccessed events. setInterestGroupTracking
Fields§
§method: SetInterestGroupTrackingMethod§params: SetInterestGroupTrackingParamsImplementations§
Source§impl SetInterestGroupTracking
impl SetInterestGroupTracking
pub const IDENTIFIER: &'static str = "Storage.setInterestGroupTracking"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetInterestGroupTracking
impl Clone for SetInterestGroupTracking
Source§fn clone(&self) -> SetInterestGroupTracking
fn clone(&self) -> SetInterestGroupTracking
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 SetInterestGroupTracking
impl CommandResult for SetInterestGroupTracking
type Result = SetInterestGroupTrackingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetInterestGroupTracking
impl Debug for SetInterestGroupTracking
Source§impl<'de> Deserialize<'de> for SetInterestGroupTracking
impl<'de> Deserialize<'de> for SetInterestGroupTracking
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<SetInterestGroupTracking> for BrowserProtocolCommands
impl From<SetInterestGroupTracking> for BrowserProtocolCommands
Source§fn from(v: SetInterestGroupTracking) -> Self
fn from(v: SetInterestGroupTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetInterestGroupTracking> for Command
impl From<SetInterestGroupTracking> for Command
Source§fn from(v: SetInterestGroupTracking) -> Self
fn from(v: SetInterestGroupTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetInterestGroupTracking> for StorageCommands
impl From<SetInterestGroupTracking> for StorageCommands
Source§fn from(v: SetInterestGroupTracking) -> Self
fn from(v: SetInterestGroupTracking) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetInterestGroupTracking
impl PartialEq for SetInterestGroupTracking
Source§impl Serialize for SetInterestGroupTracking
impl Serialize for SetInterestGroupTracking
Source§impl TryFrom<BrowserProtocolCommands> for SetInterestGroupTracking
impl TryFrom<BrowserProtocolCommands> for SetInterestGroupTracking
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, <SetInterestGroupTracking as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetInterestGroupTracking as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetInterestGroupTracking
impl TryFrom<Command> for SetInterestGroupTracking
Source§impl TryFrom<StorageCommands> for SetInterestGroupTracking
impl TryFrom<StorageCommands> for SetInterestGroupTracking
Source§type Error = StorageCommands
type Error = StorageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: StorageCommands,
) -> Result<Self, <SetInterestGroupTracking as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <SetInterestGroupTracking as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetInterestGroupTracking
Auto Trait Implementations§
impl Freeze for SetInterestGroupTracking
impl RefUnwindSafe for SetInterestGroupTracking
impl Send for SetInterestGroupTracking
impl Sync for SetInterestGroupTracking
impl Unpin for SetInterestGroupTracking
impl UnsafeUnpin for SetInterestGroupTracking
impl UnwindSafe for SetInterestGroupTracking
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