#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::blog_pckt::block::task_item::TaskItem;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TaskList<'a> {
#[serde(borrow)]
pub content: Vec<TaskItem<'a>>,
}
impl<'a> LexiconSchema for TaskList<'a> {
fn nsid() -> &'static str {
"blog.pckt.block.taskList"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blog_pckt_block_taskList()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod task_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 Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Content = Unset;
}
pub struct SetContent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetContent<S> {}
impl<S: State> State for SetContent<S> {
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct content(());
}
}
pub struct TaskListBuilder<'a, S: task_list_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<TaskItem<'a>>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TaskList<'a> {
pub fn new() -> TaskListBuilder<'a, task_list_state::Empty> {
TaskListBuilder::new()
}
}
impl<'a> TaskListBuilder<'a, task_list_state::Empty> {
pub fn new() -> Self {
TaskListBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> TaskListBuilder<'a, S>
where
S: task_list_state::State,
S::Content: task_list_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<Vec<TaskItem<'a>>>,
) -> TaskListBuilder<'a, task_list_state::SetContent<S>> {
self._fields.0 = Option::Some(value.into());
TaskListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TaskListBuilder<'a, S>
where
S: task_list_state::State,
S::Content: task_list_state::IsSet,
{
pub fn build(self) -> TaskList<'a> {
TaskList {
content: 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>,
>,
) -> TaskList<'a> {
TaskList {
content: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blog_pckt_block_taskList() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("blog.pckt.block.taskList"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("content")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Array of task items"),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("blog.pckt.block.taskItem"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}