#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::org_passingreads::book::StatefulBook;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetBook<S: BosStr = DefaultStr> {
pub id: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetBookOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub book: Option<StatefulBook<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
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<S: BosStr> = GetBookOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetBook<S> {
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<S: BosStr> = GetBook<S>;
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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetId<St> {}
impl<St: State> State for SetId<St> {
type Id = Set<members::id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct id(());
}
}
pub struct GetBookBuilder<S: BosStr, St: get_book_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetBook<S> {
pub fn new() -> GetBookBuilder<S, get_book_state::Empty> {
GetBookBuilder::new()
}
}
impl<S: BosStr> GetBookBuilder<S, get_book_state::Empty> {
pub fn new() -> Self {
GetBookBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetBookBuilder<S, St>
where
St: get_book_state::State,
St::Id: get_book_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<S>,
) -> GetBookBuilder<S, get_book_state::SetId<St>> {
self._fields.0 = Option::Some(value.into());
GetBookBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetBookBuilder<S, St>
where
St: get_book_state::State,
St::Id: get_book_state::IsSet,
{
pub fn build(self) -> GetBook<S> {
GetBook {
id: self._fields.0.unwrap(),
}
}
}