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