#[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, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
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 BoardGamePlay<'a> {
#[serde(borrow)]
pub bgg_id: CowStr<'a>,
#[serde(borrow)]
pub name: CowStr<'a>,
pub played_at: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BoardGamePlayGetRecordOutput<'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: BoardGamePlay<'a>,
}
impl<'a> BoardGamePlay<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, BoardGamePlayRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BoardGamePlayRecord;
impl XrpcResp for BoardGamePlayRecord {
const NSID: &'static str = "ca.jmaingot.boardGamePlay";
const ENCODING: &'static str = "application/json";
type Output<'de> = BoardGamePlayGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<BoardGamePlayGetRecordOutput<'_>> for BoardGamePlay<'_> {
fn from(output: BoardGamePlayGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for BoardGamePlay<'_> {
const NSID: &'static str = "ca.jmaingot.boardGamePlay";
type Record = BoardGamePlayRecord;
}
impl Collection for BoardGamePlayRecord {
const NSID: &'static str = "ca.jmaingot.boardGamePlay";
type Record = BoardGamePlayRecord;
}
impl<'a> LexiconSchema for BoardGamePlay<'a> {
fn nsid() -> &'static str {
"ca.jmaingot.boardGamePlay"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ca_jmaingot_boardGamePlay()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod board_game_play_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 Name;
type PlayedAt;
type BggId;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type PlayedAt = Unset;
type BggId = Unset;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type Name = Set<members::name>;
type PlayedAt = S::PlayedAt;
type BggId = S::BggId;
}
pub struct SetPlayedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPlayedAt<S> {}
impl<S: State> State for SetPlayedAt<S> {
type Name = S::Name;
type PlayedAt = Set<members::played_at>;
type BggId = S::BggId;
}
pub struct SetBggId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBggId<S> {}
impl<S: State> State for SetBggId<S> {
type Name = S::Name;
type PlayedAt = S::PlayedAt;
type BggId = Set<members::bgg_id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct played_at(());
pub struct bgg_id(());
}
}
pub struct BoardGamePlayBuilder<'a, S: board_game_play_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> BoardGamePlay<'a> {
pub fn new() -> BoardGamePlayBuilder<'a, board_game_play_state::Empty> {
BoardGamePlayBuilder::new()
}
}
impl<'a> BoardGamePlayBuilder<'a, board_game_play_state::Empty> {
pub fn new() -> Self {
BoardGamePlayBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BoardGamePlayBuilder<'a, S>
where
S: board_game_play_state::State,
S::BggId: board_game_play_state::IsUnset,
{
pub fn bgg_id(
mut self,
value: impl Into<CowStr<'a>>,
) -> BoardGamePlayBuilder<'a, board_game_play_state::SetBggId<S>> {
self._fields.0 = Option::Some(value.into());
BoardGamePlayBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BoardGamePlayBuilder<'a, S>
where
S: board_game_play_state::State,
S::Name: board_game_play_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> BoardGamePlayBuilder<'a, board_game_play_state::SetName<S>> {
self._fields.1 = Option::Some(value.into());
BoardGamePlayBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BoardGamePlayBuilder<'a, S>
where
S: board_game_play_state::State,
S::PlayedAt: board_game_play_state::IsUnset,
{
pub fn played_at(
mut self,
value: impl Into<Datetime>,
) -> BoardGamePlayBuilder<'a, board_game_play_state::SetPlayedAt<S>> {
self._fields.2 = Option::Some(value.into());
BoardGamePlayBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BoardGamePlayBuilder<'a, S>
where
S: board_game_play_state::State,
S::Name: board_game_play_state::IsSet,
S::PlayedAt: board_game_play_state::IsSet,
S::BggId: board_game_play_state::IsSet,
{
pub fn build(self) -> BoardGamePlay<'a> {
BoardGamePlay {
bgg_id: self._fields.0.unwrap(),
name: self._fields.1.unwrap(),
played_at: self._fields.2.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>,
>,
) -> BoardGamePlay<'a> {
BoardGamePlay {
bgg_id: self._fields.0.unwrap(),
name: self._fields.1.unwrap(),
played_at: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_ca_jmaingot_boardGamePlay() -> 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("ca.jmaingot.boardGamePlay"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A single board game play")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"), SmolStr::new_static("bggId"),
SmolStr::new_static("playedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("bggId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"corresponds to https://boardgamegeek.com/boardgame/<bggId> for the game",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("ISO 8601 date string"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}