// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: sh.weaver.notebook.getNotebookByTitle // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GetNotebookByTitle<'a> { #[serde(borrow)] pub actor: jacquard_common::types::ident::AtIdentifier<'a>, #[serde(borrow)] pub title: jacquard_common::CowStr<'a>, } pub mod get_notebook_by_title_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 Title; type Actor; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Title = Unset; type Actor = Unset; } ///State transition - sets the `title` field to Set pub struct SetTitle(PhantomData S>); impl sealed::Sealed for SetTitle {} impl State for SetTitle { type Title = Set; type Actor = S::Actor; } ///State transition - sets the `actor` field to Set pub struct SetActor(PhantomData S>); impl sealed::Sealed for SetActor {} impl State for SetActor { type Title = S::Title; type Actor = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `title` field pub struct title(()); ///Marker type for the `actor` field pub struct actor(()); } } /// Builder for constructing an instance of this type pub struct GetNotebookByTitleBuilder<'a, S: get_notebook_by_title_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> GetNotebookByTitle<'a> { /// Create a new builder for this type pub fn new() -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::Empty> { GetNotebookByTitleBuilder::new() } } impl<'a> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GetNotebookByTitleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetNotebookByTitleBuilder<'a, S> where S: get_notebook_by_title_state::State, S::Actor: get_notebook_by_title_state::IsUnset, { /// Set the `actor` field (required) pub fn actor( mut self, value: impl Into>, ) -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::SetActor> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); GetNotebookByTitleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetNotebookByTitleBuilder<'a, S> where S: get_notebook_by_title_state::State, S::Title: get_notebook_by_title_state::IsUnset, { /// Set the `title` field (required) pub fn title( mut self, value: impl Into>, ) -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::SetTitle> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); GetNotebookByTitleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetNotebookByTitleBuilder<'a, S> where S: get_notebook_by_title_state::State, S::Title: get_notebook_by_title_state::IsSet, S::Actor: get_notebook_by_title_state::IsSet, { /// Build the final struct pub fn build(self) -> GetNotebookByTitle<'a> { GetNotebookByTitle { actor: self.__unsafe_private_named.0.unwrap(), title: 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 GetNotebookByTitleOutput<'a> { #[serde(borrow)] pub entries: Vec>, #[serde(borrow)] pub notebook: crate::sh_weaver::notebook::NotebookView<'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 GetNotebookByTitleError<'a> { #[serde(rename = "NotebookNotFound")] NotebookNotFound(std::option::Option>), } impl core::fmt::Display for GetNotebookByTitleError<'_> { 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::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } /// Response type for ///sh.weaver.notebook.getNotebookByTitle pub struct GetNotebookByTitleResponse; impl jacquard_common::xrpc::XrpcResp for GetNotebookByTitleResponse { const NSID: &'static str = "sh.weaver.notebook.getNotebookByTitle"; const ENCODING: &'static str = "application/json"; type Output<'de> = GetNotebookByTitleOutput<'de>; type Err<'de> = GetNotebookByTitleError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for GetNotebookByTitle<'a> { const NSID: &'static str = "sh.weaver.notebook.getNotebookByTitle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = GetNotebookByTitleResponse; } /// Endpoint type for ///sh.weaver.notebook.getNotebookByTitle pub struct GetNotebookByTitleRequest; impl jacquard_common::xrpc::XrpcEndpoint for GetNotebookByTitleRequest { const PATH: &'static str = "/xrpc/sh.weaver.notebook.getNotebookByTitle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = GetNotebookByTitle<'de>; type Response = GetNotebookByTitleResponse; }