pub struct RevokeTokenParams {
pub token_id: String,
}
Expand description
struct for passing parameters to the method revoke_token
Fields§
§token_id: String
Alphanumeric string identifying a token.
Trait Implementations§
Source§impl Clone for RevokeTokenParams
impl Clone for RevokeTokenParams
Source§fn clone(&self) -> RevokeTokenParams
fn clone(&self) -> RevokeTokenParams
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 RevokeTokenParams
impl Debug for RevokeTokenParams
Source§impl Default for RevokeTokenParams
impl Default for RevokeTokenParams
Source§fn default() -> RevokeTokenParams
fn default() -> RevokeTokenParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RevokeTokenParams
impl RefUnwindSafe for RevokeTokenParams
impl Send for RevokeTokenParams
impl Sync for RevokeTokenParams
impl Unpin for RevokeTokenParams
impl UnwindSafe for RevokeTokenParams
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