jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.atproto.server.activateAccount
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
/// XRPC request marker type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct ActivateAccount;
/// Response type for com.atproto.server.activateAccount
pub struct ActivateAccountResponse;
impl jacquard_common::xrpc::XrpcResp for ActivateAccountResponse {
    const NSID: &'static str = "com.atproto.server.activateAccount";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ();
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for ActivateAccount {
    const NSID: &'static str = "com.atproto.server.activateAccount";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = ActivateAccountResponse;
}

/// Endpoint type for com.atproto.server.activateAccount
pub struct ActivateAccountRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ActivateAccountRequest {
    const PATH: &'static str = "/xrpc/com.atproto.server.activateAccount";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = ActivateAccount;
    type Response = ActivateAccountResponse;
}