pub struct GetTrustTokens {
pub method: GetTrustTokensMethod,
pub params: GetTrustTokensParams,
}Expand description
Returns the number of stored Trust Tokens per issuer for the current browsing context. getTrustTokens
Fields§
§method: GetTrustTokensMethod§params: GetTrustTokensParamsImplementations§
Source§impl GetTrustTokens
impl GetTrustTokens
pub fn builder() -> GetTrustTokensBuilder
Source§impl GetTrustTokens
impl GetTrustTokens
pub const IDENTIFIER: &'static str = "Storage.getTrustTokens"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetTrustTokens
impl Clone for GetTrustTokens
Source§fn clone(&self) -> GetTrustTokens
fn clone(&self) -> GetTrustTokens
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 GetTrustTokens
impl CommandResult for GetTrustTokens
type Result = GetTrustTokensResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetTrustTokens
impl Debug for GetTrustTokens
Source§impl<'de> Deserialize<'de> for GetTrustTokens
impl<'de> Deserialize<'de> for GetTrustTokens
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<GetTrustTokens> for BrowserProtocolCommands
impl From<GetTrustTokens> for BrowserProtocolCommands
Source§fn from(v: GetTrustTokens) -> Self
fn from(v: GetTrustTokens) -> Self
Converts to this type from the input type.
Source§impl From<GetTrustTokens> for Command
impl From<GetTrustTokens> for Command
Source§fn from(v: GetTrustTokens) -> Self
fn from(v: GetTrustTokens) -> Self
Converts to this type from the input type.
Source§impl From<GetTrustTokens> for StorageCommands
impl From<GetTrustTokens> for StorageCommands
Source§fn from(v: GetTrustTokens) -> Self
fn from(v: GetTrustTokens) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetTrustTokens
impl PartialEq for GetTrustTokens
Source§impl Serialize for GetTrustTokens
impl Serialize for GetTrustTokens
Source§impl TryFrom<BrowserProtocolCommands> for GetTrustTokens
impl TryFrom<BrowserProtocolCommands> for GetTrustTokens
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, <GetTrustTokens as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetTrustTokens as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetTrustTokens
impl TryFrom<Command> for GetTrustTokens
Source§impl TryFrom<StorageCommands> for GetTrustTokens
impl TryFrom<StorageCommands> for GetTrustTokens
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, <GetTrustTokens as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <GetTrustTokens as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetTrustTokens
Auto Trait Implementations§
impl Freeze for GetTrustTokens
impl RefUnwindSafe for GetTrustTokens
impl Send for GetTrustTokens
impl Sync for GetTrustTokens
impl Unpin for GetTrustTokens
impl UnsafeUnpin for GetTrustTokens
impl UnwindSafe for GetTrustTokens
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