#[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 GetBook<'a> {
#[serde(borrow)]
pub id: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetBookOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub book: Option<StatefulBook<'a>>,
}
pub struct GetBookResponse;
impl jacquard_common::xrpc::XrpcResp for GetBookResponse {
const NSID: &'static str = "org.passingreads.book.getBook";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetBookOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetBook<'a> {
const NSID: &'static str = "org.passingreads.book.getBook";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetBookResponse;
}
pub struct GetBookRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetBookRequest {
const PATH: &'static str = "/xrpc/org.passingreads.book.getBook";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetBook<'de>;
type Response = GetBookResponse;
}
pub mod get_book_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 Id;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Id = Unset;
}
pub struct SetId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetId<S> {}
impl<S: State> State for SetId<S> {
type Id = Set<members::id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct id(());
}
}
pub struct GetBookBuilder<'a, S: get_book_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetBook<'a> {
pub fn new() -> GetBookBuilder<'a, get_book_state::Empty> {
GetBookBuilder::new()
}
}
impl<'a> GetBookBuilder<'a, get_book_state::Empty> {
pub fn new() -> Self {
GetBookBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetBookBuilder<'a, S>
where
S: get_book_state::State,
S::Id: get_book_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetBookBuilder<'a, get_book_state::SetId<S>> {
self._fields.0 = Option::Some(value.into());
GetBookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetBookBuilder<'a, S>
where
S: get_book_state::State,
S::Id: get_book_state::IsSet,
{
pub fn build(self) -> GetBook<'a> {
GetBook {
id: self._fields.0.unwrap(),
}
}
}