jacquard-api 0.12.0-beta.2

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 alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::bytes::Bytes;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};

#[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<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

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, buffer: &mut Vec<u8>) -> Result<(), jacquard_common::xrpc::EncodeError>
    where
        Self: Serialize,
    {
        Ok(buffer.copy_from_slice(self.body.as_ref()))
    }
    fn decode_body<'de>(body: &'de [u8]) -> Result<Self, jacquard_common::error::DecodeError>
    where
        Self: Deserialize<'de>,
    {
        Ok(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<S: BosStr> = ImportRepo;
    type Response = ImportRepoResponse;
}