pub struct FarcasterSignerRevoked {
pub fid: String,
pub public_key: String,
pub status: FarcasterSignerRevokedStatus,
}Expand description
A Farcaster signer response when the signer has been revoked.
JSON schema
{
"title": "FarcasterSignerRevoked",
"description": "A Farcaster signer response when the signer has been
revoked.",
"type": "object",
"required": [
"fid",
"public_key",
"status"
],
"properties": {
"fid": {
"type": "string"
},
"public_key": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"revoked"
]
}
},
"x-stainless-model": "client_auth.farcaster_signer_revoked"
}Fields§
§fid: String§public_key: String§status: FarcasterSignerRevokedStatusTrait Implementations§
Source§impl Clone for FarcasterSignerRevoked
impl Clone for FarcasterSignerRevoked
Source§fn clone(&self) -> FarcasterSignerRevoked
fn clone(&self) -> FarcasterSignerRevoked
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 FarcasterSignerRevoked
impl Debug for FarcasterSignerRevoked
Source§impl<'de> Deserialize<'de> for FarcasterSignerRevoked
impl<'de> Deserialize<'de> for FarcasterSignerRevoked
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<&FarcasterSignerRevoked> for FarcasterSignerRevoked
impl From<&FarcasterSignerRevoked> for FarcasterSignerRevoked
Source§fn from(value: &FarcasterSignerRevoked) -> Self
fn from(value: &FarcasterSignerRevoked) -> Self
Converts to this type from the input type.
Source§impl From<FarcasterSignerRevoked> for FarcasterSignerInitResponseBody
impl From<FarcasterSignerRevoked> for FarcasterSignerInitResponseBody
Source§fn from(value: FarcasterSignerRevoked) -> Self
fn from(value: FarcasterSignerRevoked) -> Self
Converts to this type from the input type.
Source§impl From<FarcasterSignerRevoked> for FarcasterSignerStatusResponseBody
impl From<FarcasterSignerRevoked> for FarcasterSignerStatusResponseBody
Source§fn from(value: FarcasterSignerRevoked) -> Self
fn from(value: FarcasterSignerRevoked) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterSignerRevoked
impl RefUnwindSafe for FarcasterSignerRevoked
impl Send for FarcasterSignerRevoked
impl Sync for FarcasterSignerRevoked
impl Unpin for FarcasterSignerRevoked
impl UnsafeUnpin for FarcasterSignerRevoked
impl UnwindSafe for FarcasterSignerRevoked
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