pub struct RevokeParams {
pub token_id: String,
}Expand description
control.pairing.revoke params.
Fields§
§token_id: StringThe short id of the paired token to revoke.
Trait Implementations§
Source§impl Clone for RevokeParams
impl Clone for RevokeParams
Source§fn clone(&self) -> RevokeParams
fn clone(&self) -> RevokeParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ControlCall for RevokeParams
impl ControlCall for RevokeParams
Source§const METHOD: ControlMethod = ControlMethod::PairingRevoke
const METHOD: ControlMethod = ControlMethod::PairingRevoke
The wire method this call invokes.
Source§type Output = PairingRevokeResult
type Output = PairingRevokeResult
The typed result this call returns on success.
Source§impl Debug for RevokeParams
impl Debug for RevokeParams
Source§impl<'de> Deserialize<'de> for RevokeParams
impl<'de> Deserialize<'de> for RevokeParams
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
impl Eq for RevokeParams
Source§impl PartialEq for RevokeParams
impl PartialEq for RevokeParams
Source§impl Serialize for RevokeParams
impl Serialize for RevokeParams
impl StructuralPartialEq for RevokeParams
Auto Trait Implementations§
impl Freeze for RevokeParams
impl RefUnwindSafe for RevokeParams
impl Send for RevokeParams
impl Sync for RevokeParams
impl Unpin for RevokeParams
impl UnsafeUnpin for RevokeParams
impl UnwindSafe for RevokeParams
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