pub struct CreateAccountRequest;Expand description
Endpoint marker for the com.atproto.server.createAccount procedure.
Path: /xrpc/com.atproto.server.createAccount. The request payload type is CreateAccount<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for CreateAccountRequest
impl XrpcEndpoint for CreateAccountRequest
Source§const PATH: &'static str = "/xrpc/com.atproto.server.createAccount"
const PATH: &'static str = "/xrpc/com.atproto.server.createAccount"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod
const METHOD: XrpcMethod
XRPC method (query/GET or procedure/POST)
Source§type Request<S: BosStr> = CreateAccount<S>
type Request<S: BosStr> = CreateAccount<S>
XRPC Request data type
Source§type Response = CreateAccountResponse
type Response = CreateAccountResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for CreateAccountRequest
impl RefUnwindSafe for CreateAccountRequest
impl Send for CreateAccountRequest
impl Sync for CreateAccountRequest
impl Unpin for CreateAccountRequest
impl UnsafeUnpin for CreateAccountRequest
impl UnwindSafe for CreateAccountRequest
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