pub struct PairingRevokeResult {
pub revoked: bool,
pub token_id: String,
}Expand description
control.pairing.revoke — the revoke acknowledgement.
Fields§
§revoked: boolWhether a token was actually removed.
token_id: StringThe token id that was targeted.
Trait Implementations§
Source§impl Clone for PairingRevokeResult
impl Clone for PairingRevokeResult
Source§fn clone(&self) -> PairingRevokeResult
fn clone(&self) -> PairingRevokeResult
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 Debug for PairingRevokeResult
impl Debug for PairingRevokeResult
Source§impl<'de> Deserialize<'de> for PairingRevokeResult
impl<'de> Deserialize<'de> for PairingRevokeResult
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 PairingRevokeResult
Source§impl PartialEq for PairingRevokeResult
impl PartialEq for PairingRevokeResult
Source§impl Serialize for PairingRevokeResult
impl Serialize for PairingRevokeResult
impl StructuralPartialEq for PairingRevokeResult
Auto Trait Implementations§
impl Freeze for PairingRevokeResult
impl RefUnwindSafe for PairingRevokeResult
impl Send for PairingRevokeResult
impl Sync for PairingRevokeResult
impl Unpin for PairingRevokeResult
impl UnsafeUnpin for PairingRevokeResult
impl UnwindSafe for PairingRevokeResult
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