jacquard-api 0.10.2

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

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Content<'a> {
    ///Array of content blocks
    #[serde(borrow)]
    pub items: Vec<ContentItemsItem<'a>>,
}

pub mod content_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 ContentBuilder<'a, S: content_state::State> {
    _phantom_state: ::core::marker::PhantomData<fn() -> S>,
    __unsafe_private_named: (::core::option::Option<Vec<ContentItemsItem<'a>>>,),
    _phantom: ::core::marker::PhantomData<&'a ()>,
}

impl<'a> Content<'a> {
    /// Create a new builder for this type
    pub fn new() -> ContentBuilder<'a, content_state::Empty> {
        ContentBuilder::new()
    }
}

impl<'a> ContentBuilder<'a, content_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        ContentBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: (None,),
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> ContentBuilder<'a, S>
where
    S: content_state::State,
    S::Items: content_state::IsUnset,
{
    /// Set the `items` field (required)
    pub fn items(
        mut self,
        value: impl Into<Vec<ContentItemsItem<'a>>>,
    ) -> ContentBuilder<'a, content_state::SetItems<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        ContentBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> ContentBuilder<'a, S>
where
    S: content_state::State,
    S::Items: content_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> Content<'a> {
        Content {
            items: self.__unsafe_private_named.0.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: std::collections::BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> Content<'a> {
        Content {
            items: self.__unsafe_private_named.0.unwrap(),
            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 ContentItemsItem<'a> {
    #[serde(rename = "fyi.questionable.richtext.text")]
    Text(Box<crate::fyi_questionable::richtext::text::Text<'a>>),
    #[serde(rename = "fyi.questionable.richtext.blockquote")]
    Blockquote(Box<crate::fyi_questionable::richtext::blockquote::Blockquote<'a>>),
    #[serde(rename = "fyi.questionable.richtext.bskyPost")]
    BskyPost(Box<crate::fyi_questionable::richtext::bsky_post::BskyPost<'a>>),
    #[serde(rename = "fyi.questionable.richtext.code")]
    Code(Box<crate::fyi_questionable::richtext::code::Code<'a>>),
    #[serde(rename = "fyi.questionable.richtext.header")]
    Header(Box<crate::fyi_questionable::richtext::header::Header<'a>>),
    #[serde(rename = "fyi.questionable.richtext.horizontalRule")]
    HorizontalRule(
        Box<crate::fyi_questionable::richtext::horizontal_rule::HorizontalRule<'a>>,
    ),
    #[serde(rename = "fyi.questionable.richtext.image")]
    Image(Box<crate::fyi_questionable::richtext::image::Image<'a>>),
    #[serde(rename = "fyi.questionable.richtext.math")]
    Math(Box<crate::fyi_questionable::richtext::math::Math<'a>>),
    #[serde(rename = "fyi.questionable.richtext.list")]
    List(Box<crate::fyi_questionable::richtext::list::List<'a>>),
    #[serde(rename = "fyi.questionable.richtext.website")]
    Website(Box<crate::fyi_questionable::richtext::website::Website<'a>>),
}

fn lexicon_doc_fyi_questionable_richtext_content() -> ::jacquard_lexicon::lexicon::LexiconDoc<
    'static,
> {
    ::jacquard_lexicon::lexicon::LexiconDoc {
        lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
        id: ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.content"),
        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: Some(
                                    ::jacquard_common::CowStr::new_static(
                                        "Array of content blocks",
                                    ),
                                ),
                                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.blockquote"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.bskyPost"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.code"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.header"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.horizontalRule"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.image"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.math"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.text"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.list"),
                                        ::jacquard_common::CowStr::new_static("fyi.questionable.richtext.website")
                                    ],
                                    closed: Some(false),
                                }),
                                min_length: None,
                                max_length: Some(1000usize),
                            }),
                        );
                        map
                    },
                }),
            );
            map
        },
    }
}

impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Content<'a> {
    fn nsid() -> &'static str {
        "fyi.questionable.richtext.content"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
        lexicon_doc_fyi_questionable_richtext_content()
    }
    fn validate(
        &self,
    ) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
        {
            let value = &self.items;
            #[allow(unused_comparisons)]
            if value.len() > 1000usize {
                return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
                    path: ::jacquard_lexicon::validation::ValidationPath::from_field(
                        "items",
                    ),
                    max: 1000usize,
                    actual: value.len(),
                });
            }
        }
        Ok(())
    }
}