pub struct FarcasterUnlinkInput {
pub fid: f64,
}Expand description
Input for unlinking a Farcaster account.
JSON schema
{
"title": "FarcasterUnlinkInput",
"description": "Input for unlinking a Farcaster account.",
"type": "object",
"required": [
"fid"
],
"properties": {
"fid": {
"type": "number"
}
},
"x-stainless-model": "client_auth.farcaster_unlink_input"
}Fields§
§fid: f64Trait Implementations§
Source§impl Clone for FarcasterUnlinkInput
impl Clone for FarcasterUnlinkInput
Source§fn clone(&self) -> FarcasterUnlinkInput
fn clone(&self) -> FarcasterUnlinkInput
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 FarcasterUnlinkInput
impl Debug for FarcasterUnlinkInput
Source§impl<'de> Deserialize<'de> for FarcasterUnlinkInput
impl<'de> Deserialize<'de> for FarcasterUnlinkInput
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<&FarcasterUnlinkInput> for FarcasterUnlinkInput
impl From<&FarcasterUnlinkInput> for FarcasterUnlinkInput
Source§fn from(value: &FarcasterUnlinkInput) -> Self
fn from(value: &FarcasterUnlinkInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FarcasterUnlinkInput
impl RefUnwindSafe for FarcasterUnlinkInput
impl Send for FarcasterUnlinkInput
impl Sync for FarcasterUnlinkInput
impl Unpin for FarcasterUnlinkInput
impl UnsafeUnpin for FarcasterUnlinkInput
impl UnwindSafe for FarcasterUnlinkInput
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