#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct List<'a> {
#[serde(borrow)]
pub items: Vec<ListItemsItem<'a>>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(default = "_default_list_ordered")]
pub ordered: std::option::Option<bool>,
}
fn _default_list_ordered() -> std::option::Option<bool> {
Some(false)
}
pub mod list_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 Items;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Items = Unset;
}
pub struct SetItems<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetItems<S> {}
impl<S: State> State for SetItems<S> {
type Items = Set<members::items>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct items(());
}
}
pub struct ListBuilder<'a, S: list_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<Vec<ListItemsItem<'a>>>,
::core::option::Option<bool>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> List<'a> {
pub fn new() -> ListBuilder<'a, list_state::Empty> {
ListBuilder::new()
}
}
impl<'a> ListBuilder<'a, list_state::Empty> {
pub fn new() -> Self {
ListBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Items: list_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ListItemsItem<'a>>>,
) -> ListBuilder<'a, list_state::SetItems<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
ListBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: list_state::State> ListBuilder<'a, S> {
pub fn ordered(mut self, value: impl Into<Option<bool>>) -> Self {
self.__unsafe_private_named.1 = value.into();
self
}
pub fn maybe_ordered(mut self, value: Option<bool>) -> Self {
self.__unsafe_private_named.1 = value;
self
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Items: list_state::IsSet,
{
pub fn build(self) -> List<'a> {
List {
items: self.__unsafe_private_named.0.unwrap(),
ordered: self.__unsafe_private_named.1.or_else(|| Some(false)),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> List<'a> {
List {
items: self.__unsafe_private_named.0.unwrap(),
ordered: self.__unsafe_private_named.1.or_else(|| Some(false)),
extra_data: Some(extra_data),
}
}
}
#[jacquard_derive::open_union]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ListItemsItem<'a> {
#[serde(rename = "fyi.questionable.richtext.text")]
Text(Box<crate::fyi_questionable::richtext::text::Text<'a>>),
#[serde(rename = "fyi.questionable.richtext.list")]
List(Box<crate::fyi_questionable::richtext::list::List<'a>>),
}
fn lexicon_doc_fyi_questionable_richtext_list() -> ::jacquard_lexicon::lexicon::LexiconDoc<
'static,
> {
::jacquard_lexicon::lexicon::LexiconDoc {
lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
id: ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.list"),
revision: None,
description: None,
defs: {
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static("main"),
::jacquard_lexicon::lexicon::LexUserType::Object(::jacquard_lexicon::lexicon::LexObject {
description: None,
required: Some(
vec![
::jacquard_common::deps::smol_str::SmolStr::new_static("items")
],
),
nullable: None,
properties: {
#[allow(unused_mut)]
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"items",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Array(::jacquard_lexicon::lexicon::LexArray {
description: None,
items: ::jacquard_lexicon::lexicon::LexArrayItem::Union(::jacquard_lexicon::lexicon::LexRefUnion {
description: None,
refs: vec![
::jacquard_common::CowStr::new_static("fyi.questionable.richtext.text"),
::jacquard_common::CowStr::new_static("fyi.questionable.richtext.list")
],
closed: None,
}),
min_length: None,
max_length: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"ordered",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Boolean(::jacquard_lexicon::lexicon::LexBoolean {
description: None,
default: None,
r#const: None,
}),
);
map
},
}),
);
map
},
}
}
impl<'a> ::jacquard_lexicon::schema::LexiconSchema for List<'a> {
fn nsid() -> &'static str {
"fyi.questionable.richtext.list"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
lexicon_doc_fyi_questionable_richtext_list()
}
fn validate(
&self,
) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
Ok(())
}
}