#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::org_passingreads::book::StatefulBook;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetBooks<'a> {
#[serde(borrow)]
pub ids: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetBooksOutput<'a> {
#[serde(borrow)]
pub books: Vec<StatefulBook<'a>>,
}
pub struct GetBooksResponse;
impl jacquard_common::xrpc::XrpcResp for GetBooksResponse {
const NSID: &'static str = "org.passingreads.book.getBooks";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetBooksOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetBooks<'a> {
const NSID: &'static str = "org.passingreads.book.getBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetBooksResponse;
}
pub struct GetBooksRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetBooksRequest {
const PATH: &'static str = "/xrpc/org.passingreads.book.getBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetBooks<'de>;
type Response = GetBooksResponse;
}
pub mod get_books_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Ids;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ids = Unset;
}
pub struct SetIds<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIds<S> {}
impl<S: State> State for SetIds<S> {
type Ids = Set<members::ids>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct ids(());
}
}
pub struct GetBooksBuilder<'a, S: get_books_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetBooks<'a> {
pub fn new() -> GetBooksBuilder<'a, get_books_state::Empty> {
GetBooksBuilder::new()
}
}
impl<'a> GetBooksBuilder<'a, get_books_state::Empty> {
pub fn new() -> Self {
GetBooksBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetBooksBuilder<'a, S>
where
S: get_books_state::State,
S::Ids: get_books_state::IsUnset,
{
pub fn ids(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetBooksBuilder<'a, get_books_state::SetIds<S>> {
self._fields.0 = Option::Some(value.into());
GetBooksBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetBooksBuilder<'a, S>
where
S: get_books_state::State,
S::Ids: get_books_state::IsSet,
{
pub fn build(self) -> GetBooks<'a> {
GetBooks {
ids: self._fields.0.unwrap(),
}
}
}