#[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_common::types::string::{Nsid, RecordKey, Rkey};
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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CodeType<'a> {
#[serde(borrow)]
pub code: RecordKey<Rkey<'a>>,
#[serde(borrow)]
pub list_id: Nsid<'a>,
}
impl<'a> LexiconSchema for CodeType<'a> {
fn nsid() -> &'static str {
"org.farmapps.temp.ecrop.defs"
}
fn def_name() -> &'static str {
"codeType"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_farmapps_temp_ecrop_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod code_type_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 ListId;
type Code;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ListId = Unset;
type Code = Unset;
}
pub struct SetListId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetListId<S> {}
impl<S: State> State for SetListId<S> {
type ListId = Set<members::list_id>;
type Code = S::Code;
}
pub struct SetCode<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCode<S> {}
impl<S: State> State for SetCode<S> {
type ListId = S::ListId;
type Code = Set<members::code>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct list_id(());
pub struct code(());
}
}
pub struct CodeTypeBuilder<'a, S: code_type_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<RecordKey<Rkey<'a>>>, Option<Nsid<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> CodeType<'a> {
pub fn new() -> CodeTypeBuilder<'a, code_type_state::Empty> {
CodeTypeBuilder::new()
}
}
impl<'a> CodeTypeBuilder<'a, code_type_state::Empty> {
pub fn new() -> Self {
CodeTypeBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> CodeTypeBuilder<'a, S>
where
S: code_type_state::State,
S::Code: code_type_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<RecordKey<Rkey<'a>>>,
) -> CodeTypeBuilder<'a, code_type_state::SetCode<S>> {
self._fields.0 = Option::Some(value.into());
CodeTypeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CodeTypeBuilder<'a, S>
where
S: code_type_state::State,
S::ListId: code_type_state::IsUnset,
{
pub fn list_id(
mut self,
value: impl Into<Nsid<'a>>,
) -> CodeTypeBuilder<'a, code_type_state::SetListId<S>> {
self._fields.1 = Option::Some(value.into());
CodeTypeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CodeTypeBuilder<'a, S>
where
S: code_type_state::State,
S::ListId: code_type_state::IsSet,
S::Code: code_type_state::IsSet,
{
pub fn build(self) -> CodeType<'a> {
CodeType {
code: self._fields.0.unwrap(),
list_id: self._fields.1.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>,
>,
) -> CodeType<'a> {
CodeType {
code: self._fields.0.unwrap(),
list_id: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_farmapps_temp_ecrop_defs() -> 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("org.farmapps.temp.ecrop.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("codeType"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Generic class to represent the code list and code that is used",
),
),
required: Some(
vec![SmolStr::new_static("listId"), SmolStr::new_static("code")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("code"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::RecordKey),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("listId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Identifier of the standard code list that contains the allowed codes.",
),
),
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}