#[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 {}
}
pub trait State: sealed::Sealed {
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct GetEntryBuilder<'a, S: get_entry_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::string::AtUri<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> GetEntry<'a> {
pub fn new() -> GetEntryBuilder<'a, get_entry_state::Empty> {
GetEntryBuilder::new()
}
}
impl<'a> GetEntryBuilder<'a, get_entry_state::Empty> {
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,
{
pub fn uri(
mut self,
value: impl Into<jacquard_common::types::string::AtUri<'a>>,
) -> GetEntryBuilder<'a, get_entry_state::SetUri<S>> {
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,
{
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<jacquard_common::CowStr<'a>>),
}
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),
}
}
}
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;
}
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;
}