pub struct SetAttributionReportingTracking {
pub method: SetAttributionReportingTrackingMethod,
pub params: SetAttributionReportingTrackingParams,
}Expand description
Enables/disables issuing of Attribution Reporting events. setAttributionReportingTracking
Fields§
§method: SetAttributionReportingTrackingMethod§params: SetAttributionReportingTrackingParamsImplementations§
Source§impl SetAttributionReportingTracking
impl SetAttributionReportingTracking
pub fn builder() -> SetAttributionReportingTrackingBuilder
Source§impl SetAttributionReportingTracking
impl SetAttributionReportingTracking
pub const IDENTIFIER: &'static str = "Storage.setAttributionReportingTracking"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetAttributionReportingTracking
impl Clone for SetAttributionReportingTracking
Source§fn clone(&self) -> SetAttributionReportingTracking
fn clone(&self) -> SetAttributionReportingTracking
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 SetAttributionReportingTracking
impl CommandResult for SetAttributionReportingTracking
type Result = SetAttributionReportingTrackingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for SetAttributionReportingTracking
impl<'de> Deserialize<'de> for SetAttributionReportingTracking
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<SetAttributionReportingTracking> for BrowserProtocolCommands
impl From<SetAttributionReportingTracking> for BrowserProtocolCommands
Source§fn from(v: SetAttributionReportingTracking) -> Self
fn from(v: SetAttributionReportingTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetAttributionReportingTracking> for Command
impl From<SetAttributionReportingTracking> for Command
Source§fn from(v: SetAttributionReportingTracking) -> Self
fn from(v: SetAttributionReportingTracking) -> Self
Converts to this type from the input type.
Source§impl From<SetAttributionReportingTracking> for StorageCommands
impl From<SetAttributionReportingTracking> for StorageCommands
Source§fn from(v: SetAttributionReportingTracking) -> Self
fn from(v: SetAttributionReportingTracking) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetAttributionReportingTracking
impl PartialEq for SetAttributionReportingTracking
Source§fn eq(&self, other: &SetAttributionReportingTracking) -> bool
fn eq(&self, other: &SetAttributionReportingTracking) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for SetAttributionReportingTracking
impl TryFrom<BrowserProtocolCommands> for SetAttributionReportingTracking
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, <SetAttributionReportingTracking as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetAttributionReportingTracking as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<StorageCommands> for SetAttributionReportingTracking
impl TryFrom<StorageCommands> for SetAttributionReportingTracking
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, <SetAttributionReportingTracking as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <SetAttributionReportingTracking as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetAttributionReportingTracking
Auto Trait Implementations§
impl Freeze for SetAttributionReportingTracking
impl RefUnwindSafe for SetAttributionReportingTracking
impl Send for SetAttributionReportingTracking
impl Sync for SetAttributionReportingTracking
impl Unpin for SetAttributionReportingTracking
impl UnsafeUnpin for SetAttributionReportingTracking
impl UnwindSafe for SetAttributionReportingTracking
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