pub struct TrustTokenOperationDone {
pub method: TrustTokenOperationDoneMethod,
pub params: TrustTokenOperationDoneParams,
}Expand description
Fired exactly once for each Trust Token operation. Depending on the type of the operation and whether the operation succeeded or failed, the event is fired before the corresponding request was sent or after the response was received. trustTokenOperationDone
Fields§
§method: TrustTokenOperationDoneMethod§params: TrustTokenOperationDoneParamsImplementations§
Source§impl TrustTokenOperationDone
impl TrustTokenOperationDone
pub const IDENTIFIER: &'static str = "Network.trustTokenOperationDone"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TrustTokenOperationDone
impl Clone for TrustTokenOperationDone
Source§fn clone(&self) -> TrustTokenOperationDone
fn clone(&self) -> TrustTokenOperationDone
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 Debug for TrustTokenOperationDone
impl Debug for TrustTokenOperationDone
Source§impl<'de> Deserialize<'de> for TrustTokenOperationDone
impl<'de> Deserialize<'de> for TrustTokenOperationDone
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<TrustTokenOperationDone> for BrowserProtocolEvents
impl From<TrustTokenOperationDone> for BrowserProtocolEvents
Source§fn from(v: TrustTokenOperationDone) -> Self
fn from(v: TrustTokenOperationDone) -> Self
Converts to this type from the input type.
Source§impl From<TrustTokenOperationDone> for Event
impl From<TrustTokenOperationDone> for Event
Source§fn from(v: TrustTokenOperationDone) -> Self
fn from(v: TrustTokenOperationDone) -> Self
Converts to this type from the input type.
Source§impl From<TrustTokenOperationDone> for NetworkEvents
impl From<TrustTokenOperationDone> for NetworkEvents
Source§fn from(v: TrustTokenOperationDone) -> Self
fn from(v: TrustTokenOperationDone) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrustTokenOperationDone
impl PartialEq for TrustTokenOperationDone
Source§impl Serialize for TrustTokenOperationDone
impl Serialize for TrustTokenOperationDone
Source§impl TryFrom<BrowserProtocolEvents> for TrustTokenOperationDone
impl TryFrom<BrowserProtocolEvents> for TrustTokenOperationDone
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <TrustTokenOperationDone as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <TrustTokenOperationDone as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for TrustTokenOperationDone
impl TryFrom<Event> for TrustTokenOperationDone
Source§impl TryFrom<NetworkEvents> for TrustTokenOperationDone
impl TryFrom<NetworkEvents> for TrustTokenOperationDone
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <TrustTokenOperationDone as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <TrustTokenOperationDone as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for TrustTokenOperationDone
Auto Trait Implementations§
impl Freeze for TrustTokenOperationDone
impl RefUnwindSafe for TrustTokenOperationDone
impl Send for TrustTokenOperationDone
impl Sync for TrustTokenOperationDone
impl Unpin for TrustTokenOperationDone
impl UnsafeUnpin for TrustTokenOperationDone
impl UnwindSafe for TrustTokenOperationDone
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