jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: net.bnewbold.m
//
// 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::{CowStr, 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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
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};
/// it's a kind of fungus

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    rename = "net.bnewbold.m",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct M<S: BosStr = DefaultStr> {
    pub common_name: S,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub edible: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub species: Option<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct MGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: M<S>,
}

impl<S: BosStr> M<S> {
    pub fn uri(uri: S) -> Result<RecordUri<S, MRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new(uri)?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct MRecord;
impl XrpcResp for MRecord {
    const NSID: &'static str = "net.bnewbold.m";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = MGetRecordOutput<S>;
    type Err = RecordError;
}

impl<S: BosStr> From<MGetRecordOutput<S>> for M<S> {
    fn from(output: MGetRecordOutput<S>) -> Self {
        output.value
    }
}

impl<S: BosStr> Collection for M<S> {
    const NSID: &'static str = "net.bnewbold.m";
    type Record = MRecord;
}

impl Collection for MRecord {
    const NSID: &'static str = "net.bnewbold.m";
    type Record = MRecord;
}

impl<S: BosStr> LexiconSchema for M<S> {
    fn nsid() -> &'static str {
        "net.bnewbold.m"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_net_bnewbold_m()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        {
            let value = &self.common_name;
            #[allow(unused_comparisons)]
            if <str>::len(value.as_ref()) > 2560usize {
                return Err(ConstraintError::MaxLength {
                    path: ValidationPath::from_field("common_name"),
                    max: 2560usize,
                    actual: <str>::len(value.as_ref()),
                });
            }
        }
        {
            let value = &self.common_name;
            {
                let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
                if count > 256usize {
                    return Err(ConstraintError::MaxGraphemes {
                        path: ValidationPath::from_field("common_name"),
                        max: 256usize,
                        actual: count,
                    });
                }
            }
        }
        if let Some(ref value) = self.species {
            #[allow(unused_comparisons)]
            if <str>::len(value.as_ref()) > 2560usize {
                return Err(ConstraintError::MaxLength {
                    path: ValidationPath::from_field("species"),
                    max: 2560usize,
                    actual: <str>::len(value.as_ref()),
                });
            }
        }
        if let Some(ref value) = self.species {
            {
                let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
                if count > 256usize {
                    return Err(ConstraintError::MaxGraphemes {
                        path: ValidationPath::from_field("species"),
                        max: 256usize,
                        actual: count,
                    });
                }
            }
        }
        Ok(())
    }
}

pub mod m_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 CommonName;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type CommonName = Unset;
    }
    ///State transition - sets the `common_name` field to Set
    pub struct SetCommonName<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetCommonName<St> {}
    impl<St: State> State for SetCommonName<St> {
        type CommonName = Set<members::common_name>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `common_name` field
        pub struct common_name(());
    }
}

/// Builder for constructing an instance of this type.
pub struct MBuilder<S: BosStr, St: m_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<S>, Option<bool>, Option<S>),
    _type: PhantomData<fn() -> S>,
}

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

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

impl<S: BosStr, St> MBuilder<S, St>
where
    St: m_state::State,
    St::CommonName: m_state::IsUnset,
{
    /// Set the `commonName` field (required)
    pub fn common_name(
        mut self,
        value: impl Into<S>,
    ) -> MBuilder<S, m_state::SetCommonName<St>> {
        self._fields.0 = Option::Some(value.into());
        MBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: m_state::State> MBuilder<S, St> {
    /// Set the `edible` field (optional)
    pub fn edible(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `edible` field to an Option value (optional)
    pub fn maybe_edible(mut self, value: Option<bool>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St: m_state::State> MBuilder<S, St> {
    /// Set the `species` field (optional)
    pub fn species(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `species` field to an Option value (optional)
    pub fn maybe_species(mut self, value: Option<S>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<S: BosStr, St> MBuilder<S, St>
where
    St: m_state::State,
    St::CommonName: m_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> M<S> {
        M {
            common_name: self._fields.0.unwrap(),
            edible: self._fields.1,
            species: self._fields.2,
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> M<S> {
        M {
            common_name: self._fields.0.unwrap(),
            edible: self._fields.1,
            species: self._fields.2,
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_net_bnewbold_m() -> 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("net.bnewbold.m"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(CowStr::new_static("it's a kind of fungus")),
                    key: Some(CowStr::new_static("any")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(vec![SmolStr::new_static("commonName")]),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("commonName"),
                                LexObjectProperty::String(LexString {
                                    max_length: Some(2560usize),
                                    max_graphemes: Some(256usize),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("edible"),
                                LexObjectProperty::Boolean(LexBoolean {
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("species"),
                                LexObjectProperty::String(LexString {
                                    max_length: Some(2560usize),
                                    max_graphemes: Some(256usize),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}