jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: fyi.questionable.richtext.list
//
// 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;

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_derive::{IntoStatic, lexicon, open_union};
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::fyi_questionable::richtext::text::Text;
use crate::fyi_questionable::richtext::list;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct List<'a> {
    #[serde(borrow)]
    pub items: Vec<ListItemsItem<'a>>,
    /// Defaults to `false`.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "_default_list_ordered")]
    pub ordered: Option<bool>,
}


#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ListItemsItem<'a> {
    #[serde(rename = "fyi.questionable.richtext.text")]
    Text(Box<Text<'a>>),
    #[serde(rename = "fyi.questionable.richtext.list")]
    List(Box<list::List<'a>>),
}

impl<'a> LexiconSchema for List<'a> {
    fn nsid() -> &'static str {
        "fyi.questionable.richtext.list"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_fyi_questionable_richtext_list()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

fn _default_list_ordered() -> 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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Items;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Items = Unset;
    }
    ///State transition - sets the `items` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `items` field
        pub struct items(());
    }
}

/// Builder for constructing an instance of this type
pub struct ListBuilder<'a, S: list_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<Vec<ListItemsItem<'a>>>, Option<bool>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> List<'a> {
    /// Create a new builder for this type
    pub fn new() -> ListBuilder<'a, list_state::Empty> {
        ListBuilder::new()
    }
}

impl<'a> ListBuilder<'a, list_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        ListBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ListBuilder<'a, S>
where
    S: list_state::State,
    S::Items: list_state::IsUnset,
{
    /// Set the `items` field (required)
    pub fn items(
        mut self,
        value: impl Into<Vec<ListItemsItem<'a>>>,
    ) -> ListBuilder<'a, list_state::SetItems<S>> {
        self._fields.0 = Option::Some(value.into());
        ListBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: list_state::State> ListBuilder<'a, S> {
    /// Set the `ordered` field (optional)
    pub fn ordered(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `ordered` field to an Option value (optional)
    pub fn maybe_ordered(mut self, value: Option<bool>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S> ListBuilder<'a, S>
where
    S: list_state::State,
    S::Items: list_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> List<'a> {
        List {
            items: self._fields.0.unwrap(),
            ordered: self._fields.1.or_else(|| Some(false)),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> List<'a> {
        List {
            items: self._fields.0.unwrap(),
            ordered: self._fields.1.or_else(|| Some(false)),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_fyi_questionable_richtext_list() -> 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("fyi.questionable.richtext.list"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Object(LexObject {
                    required: Some(vec![SmolStr::new_static("items")]),
                    properties: {
                        #[allow(unused_mut)]
                        let mut map = BTreeMap::new();
                        map.insert(
                            SmolStr::new_static("items"),
                            LexObjectProperty::Array(LexArray {
                                items: LexArrayItem::Union(LexRefUnion {
                                    refs: vec![
                                        CowStr::new_static("fyi.questionable.richtext.text"),
                                        CowStr::new_static("fyi.questionable.richtext.list")
                                    ],
                                    ..Default::default()
                                }),
                                ..Default::default()
                            }),
                        );
                        map.insert(
                            SmolStr::new_static("ordered"),
                            LexObjectProperty::Boolean(LexBoolean {
                                ..Default::default()
                            }),
                        );
                        map
                    },
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}