fn _default_index() -> std::option::Option<i64> {
Some(0i64)
}
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetBookEntry<'a> {
#[serde(default = "_default_index")]
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub index: std::option::Option<i64>,
#[serde(borrow)]
pub notebook: jacquard_common::types::string::AtUri<'a>,
}
pub mod get_book_entry_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 Notebook;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Notebook = Unset;
}
pub struct SetNotebook<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetNotebook<S> {}
impl<S: State> State for SetNotebook<S> {
type Notebook = Set<members::notebook>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct notebook(());
}
}
pub struct GetBookEntryBuilder<'a, S: get_book_entry_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<i64>,
::core::option::Option<jacquard_common::types::string::AtUri<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> GetBookEntry<'a> {
pub fn new() -> GetBookEntryBuilder<'a, get_book_entry_state::Empty> {
GetBookEntryBuilder::new()
}
}
impl<'a> GetBookEntryBuilder<'a, get_book_entry_state::Empty> {
pub fn new() -> Self {
GetBookEntryBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: get_book_entry_state::State> GetBookEntryBuilder<'a, S> {
pub fn index(mut self, value: impl Into<Option<i64>>) -> Self {
self.__unsafe_private_named.0 = value.into();
self
}
pub fn maybe_index(mut self, value: Option<i64>) -> Self {
self.__unsafe_private_named.0 = value;
self
}
}
impl<'a, S> GetBookEntryBuilder<'a, S>
where
S: get_book_entry_state::State,
S::Notebook: get_book_entry_state::IsUnset,
{
pub fn notebook(
mut self,
value: impl Into<jacquard_common::types::string::AtUri<'a>>,
) -> GetBookEntryBuilder<'a, get_book_entry_state::SetNotebook<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
GetBookEntryBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetBookEntryBuilder<'a, S>
where
S: get_book_entry_state::State,
S::Notebook: get_book_entry_state::IsSet,
{
pub fn build(self) -> GetBookEntry<'a> {
GetBookEntry {
index: self.__unsafe_private_named.0,
notebook: self.__unsafe_private_named.1.unwrap(),
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetBookEntryOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: crate::sh_weaver::notebook::BookEntryView<'a>,
}
#[jacquard_derive::open_union]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
jacquard_derive::IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetBookEntryError<'a> {
#[serde(rename = "NotebookNotFound")]
NotebookNotFound(std::option::Option<jacquard_common::CowStr<'a>>),
#[serde(rename = "EntryNotFound")]
EntryNotFound(std::option::Option<jacquard_common::CowStr<'a>>),
}
impl core::fmt::Display for GetBookEntryError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::NotebookNotFound(msg) => {
write!(f, "NotebookNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::EntryNotFound(msg) => {
write!(f, "EntryNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetBookEntryResponse;
impl jacquard_common::xrpc::XrpcResp for GetBookEntryResponse {
const NSID: &'static str = "sh.weaver.notebook.getBookEntry";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetBookEntryOutput<'de>;
type Err<'de> = GetBookEntryError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetBookEntry<'a> {
const NSID: &'static str = "sh.weaver.notebook.getBookEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetBookEntryResponse;
}
pub struct GetBookEntryRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetBookEntryRequest {
const PATH: &'static str = "/xrpc/sh.weaver.notebook.getBookEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetBookEntry<'de>;
type Response = GetBookEntryResponse;
}