pub struct SendPendingAttributionReports {
pub method: SendPendingAttributionReportsMethod,
pub params: SendPendingAttributionReportsParams,
}Expand description
Sends all pending Attribution Reports immediately, regardless of their scheduled report time. sendPendingAttributionReports
Fields§
§method: SendPendingAttributionReportsMethod§params: SendPendingAttributionReportsParamsImplementations§
Source§impl SendPendingAttributionReports
impl SendPendingAttributionReports
pub fn builder() -> SendPendingAttributionReportsBuilder
Source§impl SendPendingAttributionReports
impl SendPendingAttributionReports
pub const IDENTIFIER: &'static str = "Storage.sendPendingAttributionReports"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SendPendingAttributionReports
impl Clone for SendPendingAttributionReports
Source§fn clone(&self) -> SendPendingAttributionReports
fn clone(&self) -> SendPendingAttributionReports
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 SendPendingAttributionReports
impl CommandResult for SendPendingAttributionReports
type Result = SendPendingAttributionReportsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for SendPendingAttributionReports
impl<'de> Deserialize<'de> for SendPendingAttributionReports
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<SendPendingAttributionReports> for BrowserProtocolCommands
impl From<SendPendingAttributionReports> for BrowserProtocolCommands
Source§fn from(v: SendPendingAttributionReports) -> Self
fn from(v: SendPendingAttributionReports) -> Self
Converts to this type from the input type.
Source§impl From<SendPendingAttributionReports> for Command
impl From<SendPendingAttributionReports> for Command
Source§fn from(v: SendPendingAttributionReports) -> Self
fn from(v: SendPendingAttributionReports) -> Self
Converts to this type from the input type.
Source§impl From<SendPendingAttributionReports> for StorageCommands
impl From<SendPendingAttributionReports> for StorageCommands
Source§fn from(v: SendPendingAttributionReports) -> Self
fn from(v: SendPendingAttributionReports) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SendPendingAttributionReports
impl PartialEq for SendPendingAttributionReports
Source§fn eq(&self, other: &SendPendingAttributionReports) -> bool
fn eq(&self, other: &SendPendingAttributionReports) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for SendPendingAttributionReports
impl TryFrom<BrowserProtocolCommands> for SendPendingAttributionReports
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, <SendPendingAttributionReports as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SendPendingAttributionReports as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<StorageCommands> for SendPendingAttributionReports
impl TryFrom<StorageCommands> for SendPendingAttributionReports
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, <SendPendingAttributionReports as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <SendPendingAttributionReports as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SendPendingAttributionReports
Auto Trait Implementations§
impl Freeze for SendPendingAttributionReports
impl RefUnwindSafe for SendPendingAttributionReports
impl Send for SendPendingAttributionReports
impl Sync for SendPendingAttributionReports
impl Unpin for SendPendingAttributionReports
impl UnsafeUnpin for SendPendingAttributionReports
impl UnwindSafe for SendPendingAttributionReports
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