#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Nsid, Cid, Datetime};
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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Example<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub lexicon: Nsid<'a>,
#[serde(borrow)]
pub value: Data<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ExampleGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Example<'a>,
}
impl<'a> Example<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ExampleRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExampleRecord;
impl XrpcResp for ExampleRecord {
const NSID: &'static str = "garden.lexicon.example";
const ENCODING: &'static str = "application/json";
type Output<'de> = ExampleGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ExampleGetRecordOutput<'_>> for Example<'_> {
fn from(output: ExampleGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Example<'_> {
const NSID: &'static str = "garden.lexicon.example";
type Record = ExampleRecord;
}
impl Collection for ExampleRecord {
const NSID: &'static str = "garden.lexicon.example";
type Record = ExampleRecord;
}
impl<'a> LexiconSchema for Example<'a> {
fn nsid() -> &'static str {
"garden.lexicon.example"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_garden_lexicon_example()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod example_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 Value;
type Lexicon;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Value = Unset;
type Lexicon = Unset;
type CreatedAt = Unset;
}
pub struct SetValue<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetValue<S> {}
impl<S: State> State for SetValue<S> {
type Value = Set<members::value>;
type Lexicon = S::Lexicon;
type CreatedAt = S::CreatedAt;
}
pub struct SetLexicon<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetLexicon<S> {}
impl<S: State> State for SetLexicon<S> {
type Value = S::Value;
type Lexicon = Set<members::lexicon>;
type CreatedAt = S::CreatedAt;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Value = S::Value;
type Lexicon = S::Lexicon;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct value(());
pub struct lexicon(());
pub struct created_at(());
}
}
pub struct ExampleBuilder<'a, S: example_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Datetime>, Option<CowStr<'a>>, Option<Nsid<'a>>, Option<Data<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Example<'a> {
pub fn new() -> ExampleBuilder<'a, example_state::Empty> {
ExampleBuilder::new()
}
}
impl<'a> ExampleBuilder<'a, example_state::Empty> {
pub fn new() -> Self {
ExampleBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ExampleBuilder<'a, S>
where
S: example_state::State,
S::CreatedAt: example_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ExampleBuilder<'a, example_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: example_state::State> ExampleBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> ExampleBuilder<'a, S>
where
S: example_state::State,
S::Lexicon: example_state::IsUnset,
{
pub fn lexicon(
mut self,
value: impl Into<Nsid<'a>>,
) -> ExampleBuilder<'a, example_state::SetLexicon<S>> {
self._fields.2 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ExampleBuilder<'a, S>
where
S: example_state::State,
S::Value: example_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<Data<'a>>,
) -> ExampleBuilder<'a, example_state::SetValue<S>> {
self._fields.3 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ExampleBuilder<'a, S>
where
S: example_state::State,
S::Value: example_state::IsSet,
S::Lexicon: example_state::IsSet,
S::CreatedAt: example_state::IsSet,
{
pub fn build(self) -> Example<'a> {
Example {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
lexicon: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> Example<'a> {
Example {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
lexicon: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_garden_lexicon_example() -> 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("garden.lexicon.example"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("An example value for a lexicon schema"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("lexicon"),
SmolStr::new_static("value"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The user-supplied date and time the example was created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("A description of the example."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lexicon"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The NSID that the example is of."),
),
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}