pub struct Input {
pub did: Option<String>,
pub email: Option<String>,
pub handle: String,
pub invite_code: Option<String>,
pub password: Option<String>,
pub plc_op: Option<Value>,
pub recovery_key: Option<String>,
pub verification_code: Option<String>,
pub verification_phone: Option<String>,
}Expand description
Create an account. Implemented by PDS. XRPC Procedure: com.atproto.server.createAccount
Fields§
§did: Option<String>§email: Option<String>§handle: String§invite_code: Option<String>§password: Option<String>§plc_op: Option<Value>§recovery_key: Option<String>§verification_code: Option<String>§verification_phone: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Input
impl<'de> Deserialize<'de> for Input
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
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnsafeUnpin for Input
impl UnwindSafe for Input
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