#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetParentForReply<'a> {
#[serde(borrow)]
pub did: AtIdentifier<'a>,
#[serde(borrow)]
pub rkey: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetParentForReplyOutput<'a> {
#[serde(borrow)]
pub did: AtIdentifier<'a>,
#[serde(borrow)]
pub rkey: CowStr<'a>,
}
pub struct GetParentForReplyResponse;
impl jacquard_common::xrpc::XrpcResp for GetParentForReplyResponse {
const NSID: &'static str = "com.shinolabs.pinksea.getParentForReply";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetParentForReplyOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetParentForReply<'a> {
const NSID: &'static str = "com.shinolabs.pinksea.getParentForReply";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetParentForReplyResponse;
}
pub struct GetParentForReplyRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetParentForReplyRequest {
const PATH: &'static str = "/xrpc/com.shinolabs.pinksea.getParentForReply";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetParentForReply<'de>;
type Response = GetParentForReplyResponse;
}
pub mod get_parent_for_reply_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 Did;
type Rkey;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
type Rkey = Unset;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Did = Set<members::did>;
type Rkey = S::Rkey;
}
pub struct SetRkey<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRkey<S> {}
impl<S: State> State for SetRkey<S> {
type Did = S::Did;
type Rkey = Set<members::rkey>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
pub struct rkey(());
}
}
pub struct GetParentForReplyBuilder<'a, S: get_parent_for_reply_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetParentForReply<'a> {
pub fn new() -> GetParentForReplyBuilder<'a, get_parent_for_reply_state::Empty> {
GetParentForReplyBuilder::new()
}
}
impl<'a> GetParentForReplyBuilder<'a, get_parent_for_reply_state::Empty> {
pub fn new() -> Self {
GetParentForReplyBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetParentForReplyBuilder<'a, S>
where
S: get_parent_for_reply_state::State,
S::Did: get_parent_for_reply_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> GetParentForReplyBuilder<'a, get_parent_for_reply_state::SetDid<S>> {
self._fields.0 = Option::Some(value.into());
GetParentForReplyBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetParentForReplyBuilder<'a, S>
where
S: get_parent_for_reply_state::State,
S::Rkey: get_parent_for_reply_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetParentForReplyBuilder<'a, get_parent_for_reply_state::SetRkey<S>> {
self._fields.1 = Option::Some(value.into());
GetParentForReplyBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetParentForReplyBuilder<'a, S>
where
S: get_parent_for_reply_state::State,
S::Did: get_parent_for_reply_state::IsSet,
S::Rkey: get_parent_for_reply_state::IsSet,
{
pub fn build(self) -> GetParentForReply<'a> {
GetParentForReply {
did: self._fields.0.unwrap(),
rkey: self._fields.1.unwrap(),
}
}
}