#[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::buzz_bookhive::hive_book::HiveBook;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchBooks<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub genre: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub id: Option<CowStr<'a>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub q: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchBooksOutput<'a> {
#[serde(borrow)]
pub books: Vec<HiveBook<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i64>,
}
pub struct SearchBooksResponse;
impl jacquard_common::xrpc::XrpcResp for SearchBooksResponse {
const NSID: &'static str = "buzz.bookhive.searchBooks";
const ENCODING: &'static str = "application/json";
type Output<'de> = SearchBooksOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for SearchBooks<'a> {
const NSID: &'static str = "buzz.bookhive.searchBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = SearchBooksResponse;
}
pub struct SearchBooksRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SearchBooksRequest {
const PATH: &'static str = "/xrpc/buzz.bookhive.searchBooks";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = SearchBooks<'de>;
type Response = SearchBooksResponse;
}
fn _default_limit() -> Option<i64> {
Some(25i64)
}
pub mod search_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct SearchBooksBuilder<'a, S: search_books_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<i64>,
Option<i64>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> SearchBooks<'a> {
pub fn new() -> SearchBooksBuilder<'a, search_books_state::Empty> {
SearchBooksBuilder::new()
}
}
impl<'a> SearchBooksBuilder<'a, search_books_state::Empty> {
pub fn new() -> Self {
SearchBooksBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: search_books_state::State> SearchBooksBuilder<'a, S> {
pub fn genre(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_genre(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: search_books_state::State> SearchBooksBuilder<'a, S> {
pub fn id(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_id(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: search_books_state::State> SearchBooksBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: search_books_state::State> SearchBooksBuilder<'a, S> {
pub fn offset(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_offset(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: search_books_state::State> SearchBooksBuilder<'a, S> {
pub fn q(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_q(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> SearchBooksBuilder<'a, S>
where
S: search_books_state::State,
{
pub fn build(self) -> SearchBooks<'a> {
SearchBooks {
genre: self._fields.0,
id: self._fields.1,
limit: self._fields.2,
offset: self._fields.3,
q: self._fields.4,
}
}
}