jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: ooo.bsky.authfetch.importRepo
//
// 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_common::deps::bytes::Bytes;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ImportRepo {
    pub body: Bytes,
}

/// Response type for ooo.bsky.authfetch.importRepo
pub struct ImportRepoResponse;
impl jacquard_common::xrpc::XrpcResp for ImportRepoResponse {
    const NSID: &'static str = "ooo.bsky.authfetch.importRepo";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ();
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for ImportRepo {
    const NSID: &'static str = "ooo.bsky.authfetch.importRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/vnd.ipld.car",
    );
    type Response = ImportRepoResponse;
    fn encode_body(&self) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError> {
        Ok(self.body.to_vec())
    }
    fn decode_body<'de>(
        body: &'de [u8],
    ) -> Result<Box<Self>, jacquard_common::error::DecodeError>
    where
        Self: serde::Deserialize<'de>,
    {
        Ok(
            Box::new(Self {
                body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
            }),
        )
    }
}

/// Endpoint type for ooo.bsky.authfetch.importRepo
pub struct ImportRepoRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ImportRepoRequest {
    const PATH: &'static str = "/xrpc/ooo.bsky.authfetch.importRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/vnd.ipld.car",
    );
    type Request<'de> = ImportRepo;
    type Response = ImportRepoResponse;
}