jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: org.passingreads.book.getLocationBooks
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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>>,
    ///Human-readable name of the requested location
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub location_name: Option<CowStr<'a>>,
}

/// Response type for org.passingreads.book.getLocationBooks
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;
}

/// Endpoint type for org.passingreads.book.getLocationBooks
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type H3;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type H3 = Unset;
    }
    ///State transition - sets the `h3` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `h3` field
        pub struct h3(());
    }
}

/// Builder for constructing an instance of this type
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> {
    /// Create a new builder for this type
    pub fn new() -> GetLocationBooksBuilder<'a, get_location_books_state::Empty> {
        GetLocationBooksBuilder::new()
    }
}

impl<'a> GetLocationBooksBuilder<'a, get_location_books_state::Empty> {
    /// Create a new builder with all fields unset
    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,
{
    /// Set the `h3` field (required)
    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,
{
    /// Build the final struct
    pub fn build(self) -> GetLocationBooks<'a> {
        GetLocationBooks {
            h3: self._fields.0.unwrap(),
        }
    }
}