pub struct ClearTrustTokens {
pub method: ClearTrustTokensMethod,
pub params: ClearTrustTokensParams,
}Expand description
Removes all Trust Tokens issued by the provided issuerOrigin. Leaves other stored data, including the issuer’s Redemption Records, intact. clearTrustTokens
Fields§
§method: ClearTrustTokensMethod§params: ClearTrustTokensParamsImplementations§
Source§impl ClearTrustTokens
impl ClearTrustTokens
pub fn builder() -> ClearTrustTokensBuilder
Source§impl ClearTrustTokens
impl ClearTrustTokens
pub const IDENTIFIER: &'static str = "Storage.clearTrustTokens"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearTrustTokens
impl Clone for ClearTrustTokens
Source§fn clone(&self) -> ClearTrustTokens
fn clone(&self) -> ClearTrustTokens
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 ClearTrustTokens
impl CommandResult for ClearTrustTokens
type Result = ClearTrustTokensResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearTrustTokens
impl Debug for ClearTrustTokens
Source§impl<'de> Deserialize<'de> for ClearTrustTokens
impl<'de> Deserialize<'de> for ClearTrustTokens
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<ClearTrustTokens> for BrowserProtocolCommands
impl From<ClearTrustTokens> for BrowserProtocolCommands
Source§fn from(v: ClearTrustTokens) -> Self
fn from(v: ClearTrustTokens) -> Self
Converts to this type from the input type.
Source§impl From<ClearTrustTokens> for Command
impl From<ClearTrustTokens> for Command
Source§fn from(v: ClearTrustTokens) -> Self
fn from(v: ClearTrustTokens) -> Self
Converts to this type from the input type.
Source§impl From<ClearTrustTokens> for StorageCommands
impl From<ClearTrustTokens> for StorageCommands
Source§fn from(v: ClearTrustTokens) -> Self
fn from(v: ClearTrustTokens) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearTrustTokens
impl PartialEq for ClearTrustTokens
Source§impl Serialize for ClearTrustTokens
impl Serialize for ClearTrustTokens
Source§impl TryFrom<BrowserProtocolCommands> for ClearTrustTokens
impl TryFrom<BrowserProtocolCommands> for ClearTrustTokens
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, <ClearTrustTokens as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearTrustTokens as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearTrustTokens
impl TryFrom<Command> for ClearTrustTokens
Source§impl TryFrom<StorageCommands> for ClearTrustTokens
impl TryFrom<StorageCommands> for ClearTrustTokens
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, <ClearTrustTokens as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <ClearTrustTokens as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearTrustTokens
Auto Trait Implementations§
impl Freeze for ClearTrustTokens
impl RefUnwindSafe for ClearTrustTokens
impl Send for ClearTrustTokens
impl Sync for ClearTrustTokens
impl Unpin for ClearTrustTokens
impl UnsafeUnpin for ClearTrustTokens
impl UnwindSafe for ClearTrustTokens
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