// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: sh.weaver.notebook.getEntry // // 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 GetEntry<'a> { #[serde(borrow)] pub uri: jacquard_common::types::string::AtUri<'a>, } pub mod get_entry_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 Uri; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Uri = Unset; } ///State transition - sets the `uri` field to Set pub struct SetUri(PhantomData S>); impl sealed::Sealed for SetUri {} impl State for SetUri { type Uri = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `uri` field pub struct uri(()); } } /// Builder for constructing an instance of this type pub struct GetEntryBuilder<'a, S: get_entry_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> GetEntry<'a> { /// Create a new builder for this type pub fn new() -> GetEntryBuilder<'a, get_entry_state::Empty> { GetEntryBuilder::new() } } impl<'a> GetEntryBuilder<'a, get_entry_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GetEntryBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None,), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetEntryBuilder<'a, S> where S: get_entry_state::State, S::Uri: get_entry_state::IsUnset, { /// Set the `uri` field (required) pub fn uri( mut self, value: impl Into>, ) -> GetEntryBuilder<'a, get_entry_state::SetUri> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); GetEntryBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetEntryBuilder<'a, S> where S: get_entry_state::State, S::Uri: get_entry_state::IsSet, { /// Build the final struct pub fn build(self) -> GetEntry<'a> { GetEntry { uri: self.__unsafe_private_named.0.unwrap(), } } } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GetEntryOutput<'a> { #[serde(flatten)] #[serde(borrow)] pub value: crate::sh_weaver::notebook::EntryView<'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 GetEntryError<'a> { #[serde(rename = "EntryNotFound")] EntryNotFound(std::option::Option>), } impl core::fmt::Display for GetEntryError<'_> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { match self { Self::EntryNotFound(msg) => { write!(f, "EntryNotFound")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } /// Response type for ///sh.weaver.notebook.getEntry pub struct GetEntryResponse; impl jacquard_common::xrpc::XrpcResp for GetEntryResponse { const NSID: &'static str = "sh.weaver.notebook.getEntry"; const ENCODING: &'static str = "application/json"; type Output<'de> = GetEntryOutput<'de>; type Err<'de> = GetEntryError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for GetEntry<'a> { const NSID: &'static str = "sh.weaver.notebook.getEntry"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = GetEntryResponse; } /// Endpoint type for ///sh.weaver.notebook.getEntry pub struct GetEntryRequest; impl jacquard_common::xrpc::XrpcEndpoint for GetEntryRequest { const PATH: &'static str = "/xrpc/sh.weaver.notebook.getEntry"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = GetEntry<'de>; type Response = GetEntryResponse; }