#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::at_inlay::Element;
use crate::at_inlay::Response;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Placeholder<'a> {
#[serde(borrow)]
pub children: Vec<Element<'a>>,
#[serde(borrow)]
pub fallback: Element<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PlaceholderOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: Response<'a>,
}
pub struct PlaceholderResponse;
impl jacquard_common::xrpc::XrpcResp for PlaceholderResponse {
const NSID: &'static str = "at.inlay.Placeholder";
const ENCODING: &'static str = "application/json";
type Output<'de> = PlaceholderOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for Placeholder<'a> {
const NSID: &'static str = "at.inlay.Placeholder";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = PlaceholderResponse;
}
pub struct PlaceholderRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PlaceholderRequest {
const PATH: &'static str = "/xrpc/at.inlay.Placeholder";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = Placeholder<'de>;
type Response = PlaceholderResponse;
}
pub mod placeholder_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 Fallback;
type Children;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Fallback = Unset;
type Children = Unset;
}
pub struct SetFallback<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetFallback<S> {}
impl<S: State> State for SetFallback<S> {
type Fallback = Set<members::fallback>;
type Children = S::Children;
}
pub struct SetChildren<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetChildren<S> {}
impl<S: State> State for SetChildren<S> {
type Fallback = S::Fallback;
type Children = Set<members::children>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct fallback(());
pub struct children(());
}
}
pub struct PlaceholderBuilder<'a, S: placeholder_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<Element<'a>>>, Option<Element<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Placeholder<'a> {
pub fn new() -> PlaceholderBuilder<'a, placeholder_state::Empty> {
PlaceholderBuilder::new()
}
}
impl<'a> PlaceholderBuilder<'a, placeholder_state::Empty> {
pub fn new() -> Self {
PlaceholderBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PlaceholderBuilder<'a, S>
where
S: placeholder_state::State,
S::Children: placeholder_state::IsUnset,
{
pub fn children(
mut self,
value: impl Into<Vec<Element<'a>>>,
) -> PlaceholderBuilder<'a, placeholder_state::SetChildren<S>> {
self._fields.0 = Option::Some(value.into());
PlaceholderBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PlaceholderBuilder<'a, S>
where
S: placeholder_state::State,
S::Fallback: placeholder_state::IsUnset,
{
pub fn fallback(
mut self,
value: impl Into<Element<'a>>,
) -> PlaceholderBuilder<'a, placeholder_state::SetFallback<S>> {
self._fields.1 = Option::Some(value.into());
PlaceholderBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PlaceholderBuilder<'a, S>
where
S: placeholder_state::State,
S::Fallback: placeholder_state::IsSet,
S::Children: placeholder_state::IsSet,
{
pub fn build(self) -> Placeholder<'a> {
Placeholder {
children: self._fields.0.unwrap(),
fallback: self._fields.1.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>,
>,
) -> Placeholder<'a> {
Placeholder {
children: self._fields.0.unwrap(),
fallback: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}