#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct NotifyOfNewEntry<'a> {
#[serde(borrow)]
pub entry_uri: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct NotifyOfNewEntryOutput<'a> {}
#[jacquard_derive::open_union]
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum NotifyOfNewEntryError<'a> {}
impl core::fmt::Display for NotifyOfNewEntryError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct NotifyOfNewEntryResponse;
impl jacquard_common::xrpc::XrpcResp for NotifyOfNewEntryResponse {
const NSID: &'static str = "com.whtwnd.blog.notifyOfNewEntry";
const ENCODING: &'static str = "application/json";
type Output<'de> = NotifyOfNewEntryOutput<'de>;
type Err<'de> = NotifyOfNewEntryError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for NotifyOfNewEntry<'a> {
const NSID: &'static str = "com.whtwnd.blog.notifyOfNewEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = NotifyOfNewEntryResponse;
}
pub struct NotifyOfNewEntryRequest;
impl jacquard_common::xrpc::XrpcEndpoint for NotifyOfNewEntryRequest {
const PATH: &'static str = "/xrpc/com.whtwnd.blog.notifyOfNewEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = NotifyOfNewEntry<'de>;
type Response = NotifyOfNewEntryResponse;
}
pub mod notify_of_new_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 EntryUri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type EntryUri = Unset;
}
pub struct SetEntryUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetEntryUri<S> {}
impl<S: State> State for SetEntryUri<S> {
type EntryUri = Set<members::entry_uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct entry_uri(());
}
}
pub struct NotifyOfNewEntryBuilder<'a, S: notify_of_new_entry_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> NotifyOfNewEntry<'a> {
pub fn new() -> NotifyOfNewEntryBuilder<'a, notify_of_new_entry_state::Empty> {
NotifyOfNewEntryBuilder::new()
}
}
impl<'a> NotifyOfNewEntryBuilder<'a, notify_of_new_entry_state::Empty> {
pub fn new() -> Self {
NotifyOfNewEntryBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> NotifyOfNewEntryBuilder<'a, S>
where
S: notify_of_new_entry_state::State,
S::EntryUri: notify_of_new_entry_state::IsUnset,
{
pub fn entry_uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> NotifyOfNewEntryBuilder<'a, notify_of_new_entry_state::SetEntryUri<S>> {
self._fields.0 = Option::Some(value.into());
NotifyOfNewEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> NotifyOfNewEntryBuilder<'a, S>
where
S: notify_of_new_entry_state::State,
S::EntryUri: notify_of_new_entry_state::IsSet,
{
pub fn build(self) -> NotifyOfNewEntry<'a> {
NotifyOfNewEntry {
entry_uri: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> NotifyOfNewEntry<'a> {
NotifyOfNewEntry {
entry_uri: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}