jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.offprint.block.orderedList
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;

use crate::app_offprint::block::ordered_list;
use crate::app_offprint::block::text::Text;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ListItem<S: BosStr = DefaultStr> {
    ///Nested list items
    #[serde(skip_serializing_if = "Option::is_none")]
    pub children: Option<Vec<ordered_list::ListItem<S>>>,
    ///Text content of the list item
    pub content: Text<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct OrderedList<S: BosStr = DefaultStr> {
    ///List items
    pub children: Vec<ordered_list::ListItem<S>>,
    ///Starting number for the list  Defaults to `1`.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "_default_ordered_list_start")]
    pub start: Option<i64>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

impl<S: BosStr> LexiconSchema for ListItem<S> {
    fn nsid() -> &'static str {
        "app.offprint.block.orderedList"
    }
    fn def_name() -> &'static str {
        "listItem"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_app_offprint_block_orderedList()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

impl<S: BosStr> LexiconSchema for OrderedList<S> {
    fn nsid() -> &'static str {
        "app.offprint.block.orderedList"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_app_offprint_block_orderedList()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

pub mod list_item_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Content;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Content = Unset;
    }
    ///State transition - sets the `content` field to Set
    pub struct SetContent<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetContent<St> {}
    impl<St: State> State for SetContent<St> {
        type Content = Set<members::content>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `content` field
        pub struct content(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ListItemBuilder<S: BosStr, St: list_item_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Vec<ordered_list::ListItem<S>>>, Option<Text<S>>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> ListItem<S> {
    /// Create a new builder for this type.
    pub fn new() -> ListItemBuilder<S, list_item_state::Empty> {
        ListItemBuilder::new()
    }
}

impl<S: BosStr> ListItemBuilder<S, list_item_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        ListItemBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: list_item_state::State> ListItemBuilder<S, St> {
    /// Set the `children` field (optional)
    pub fn children(mut self, value: impl Into<Option<Vec<ordered_list::ListItem<S>>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `children` field to an Option value (optional)
    pub fn maybe_children(mut self, value: Option<Vec<ordered_list::ListItem<S>>>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S: BosStr, St> ListItemBuilder<S, St>
where
    St: list_item_state::State,
    St::Content: list_item_state::IsUnset,
{
    /// Set the `content` field (required)
    pub fn content(
        mut self,
        value: impl Into<Text<S>>,
    ) -> ListItemBuilder<S, list_item_state::SetContent<St>> {
        self._fields.1 = Option::Some(value.into());
        ListItemBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ListItemBuilder<S, St>
where
    St: list_item_state::State,
    St::Content: list_item_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> ListItem<S> {
        ListItem {
            children: self._fields.0,
            content: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> ListItem<S> {
        ListItem {
            children: self._fields.0,
            content: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_app_offprint_block_orderedList() -> LexiconDoc<'static> {
    use alloc::collections::BTreeMap;
    #[allow(unused_imports)]
    use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
    use jacquard_lexicon::lexicon::*;
    LexiconDoc {
        lexicon: Lexicon::Lexicon1,
        id: CowStr::new_static("app.offprint.block.orderedList"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("listItem"),
                LexUserType::Object(LexObject {
                    required: Some(vec![SmolStr::new_static("content")]),
                    properties: {
                        #[allow(unused_mut)]
                        let mut map = BTreeMap::new();
                        map.insert(
                            SmolStr::new_static("children"),
                            LexObjectProperty::Array(LexArray {
                                description: Some(CowStr::new_static("Nested list items")),
                                items: LexArrayItem::Ref(LexRef {
                                    r#ref: CowStr::new_static("#listItem"),
                                    ..Default::default()
                                }),
                                ..Default::default()
                            }),
                        );
                        map.insert(
                            SmolStr::new_static("content"),
                            LexObjectProperty::Ref(LexRef {
                                r#ref: CowStr::new_static("app.offprint.block.text"),
                                ..Default::default()
                            }),
                        );
                        map
                    },
                    ..Default::default()
                }),
            );
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Object(LexObject {
                    required: Some(vec![SmolStr::new_static("children")]),
                    properties: {
                        #[allow(unused_mut)]
                        let mut map = BTreeMap::new();
                        map.insert(
                            SmolStr::new_static("children"),
                            LexObjectProperty::Array(LexArray {
                                description: Some(CowStr::new_static("List items")),
                                items: LexArrayItem::Ref(LexRef {
                                    r#ref: CowStr::new_static("#listItem"),
                                    ..Default::default()
                                }),
                                ..Default::default()
                            }),
                        );
                        map.insert(
                            SmolStr::new_static("start"),
                            LexObjectProperty::Integer(LexInteger {
                                ..Default::default()
                            }),
                        );
                        map
                    },
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}

fn _default_ordered_list_start() -> Option<i64> {
    Some(1i64)
}

pub mod ordered_list_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Children;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Children = Unset;
    }
    ///State transition - sets the `children` field to Set
    pub struct SetChildren<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetChildren<St> {}
    impl<St: State> State for SetChildren<St> {
        type Children = Set<members::children>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `children` field
        pub struct children(());
    }
}

/// Builder for constructing an instance of this type.
pub struct OrderedListBuilder<S: BosStr, St: ordered_list_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Vec<ordered_list::ListItem<S>>>, Option<i64>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> OrderedList<S> {
    /// Create a new builder for this type.
    pub fn new() -> OrderedListBuilder<S, ordered_list_state::Empty> {
        OrderedListBuilder::new()
    }
}

impl<S: BosStr> OrderedListBuilder<S, ordered_list_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        OrderedListBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> OrderedListBuilder<S, St>
where
    St: ordered_list_state::State,
    St::Children: ordered_list_state::IsUnset,
{
    /// Set the `children` field (required)
    pub fn children(
        mut self,
        value: impl Into<Vec<ordered_list::ListItem<S>>>,
    ) -> OrderedListBuilder<S, ordered_list_state::SetChildren<St>> {
        self._fields.0 = Option::Some(value.into());
        OrderedListBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: ordered_list_state::State> OrderedListBuilder<S, St> {
    /// Set the `start` field (optional)
    pub fn start(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `start` field to an Option value (optional)
    pub fn maybe_start(mut self, value: Option<i64>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St> OrderedListBuilder<S, St>
where
    St: ordered_list_state::State,
    St::Children: ordered_list_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> OrderedList<S> {
        OrderedList {
            children: self._fields.0.unwrap(),
            start: self._fields.1.or_else(|| Some(1i64)),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> OrderedList<S> {
        OrderedList {
            children: self._fields.0.unwrap(),
            start: self._fields.1.or_else(|| Some(1i64)),
            extra_data: Some(extra_data),
        }
    }
}