#[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};
use crate::scot_comhairle::testing_polis_vote_v1;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisVoteV1<'a> {
pub created_at: Datetime,
#[serde(borrow)]
pub poll: testing_polis_vote_v1::PollRef<'a>,
#[serde(borrow)]
pub subject: testing_polis_vote_v1::StatementRef<'a>,
#[serde(borrow)]
pub value: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisVoteV1GetRecordOutput<'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: TestingPolisVoteV1<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PollRef<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StatementRef<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
impl<'a> TestingPolisVoteV1<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, TestingPolisVoteV1Record>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TestingPolisVoteV1Record;
impl XrpcResp for TestingPolisVoteV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisVoteV1";
const ENCODING: &'static str = "application/json";
type Output<'de> = TestingPolisVoteV1GetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<TestingPolisVoteV1GetRecordOutput<'_>> for TestingPolisVoteV1<'_> {
fn from(output: TestingPolisVoteV1GetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for TestingPolisVoteV1<'_> {
const NSID: &'static str = "scot.comhairle.testingPolisVoteV1";
type Record = TestingPolisVoteV1Record;
}
impl Collection for TestingPolisVoteV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisVoteV1";
type Record = TestingPolisVoteV1Record;
}
impl<'a> LexiconSchema for TestingPolisVoteV1<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisVoteV1"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisVoteV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for PollRef<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisVoteV1"
}
fn def_name() -> &'static str {
"pollRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisVoteV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for StatementRef<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisVoteV1"
}
fn def_name() -> &'static str {
"statementRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisVoteV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod testing_polis_vote_v1_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 CreatedAt;
type Value;
type Subject;
type Poll;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Value = Unset;
type Subject = Unset;
type Poll = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Value = S::Value;
type Subject = S::Subject;
type Poll = S::Poll;
}
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 CreatedAt = S::CreatedAt;
type Value = Set<members::value>;
type Subject = S::Subject;
type Poll = S::Poll;
}
pub struct SetSubject<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSubject<S> {}
impl<S: State> State for SetSubject<S> {
type CreatedAt = S::CreatedAt;
type Value = S::Value;
type Subject = Set<members::subject>;
type Poll = S::Poll;
}
pub struct SetPoll<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPoll<S> {}
impl<S: State> State for SetPoll<S> {
type CreatedAt = S::CreatedAt;
type Value = S::Value;
type Subject = S::Subject;
type Poll = Set<members::poll>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct value(());
pub struct subject(());
pub struct poll(());
}
}
pub struct TestingPolisVoteV1Builder<'a, S: testing_polis_vote_v1_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<testing_polis_vote_v1::PollRef<'a>>,
Option<testing_polis_vote_v1::StatementRef<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TestingPolisVoteV1<'a> {
pub fn new() -> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::Empty> {
TestingPolisVoteV1Builder::new()
}
}
impl<'a> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::Empty> {
pub fn new() -> Self {
TestingPolisVoteV1Builder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisVoteV1Builder<'a, S>
where
S: testing_polis_vote_v1_state::State,
S::CreatedAt: testing_polis_vote_v1_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
TestingPolisVoteV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisVoteV1Builder<'a, S>
where
S: testing_polis_vote_v1_state::State,
S::Poll: testing_polis_vote_v1_state::IsUnset,
{
pub fn poll(
mut self,
value: impl Into<testing_polis_vote_v1::PollRef<'a>>,
) -> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::SetPoll<S>> {
self._fields.1 = Option::Some(value.into());
TestingPolisVoteV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisVoteV1Builder<'a, S>
where
S: testing_polis_vote_v1_state::State,
S::Subject: testing_polis_vote_v1_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<testing_polis_vote_v1::StatementRef<'a>>,
) -> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::SetSubject<S>> {
self._fields.2 = Option::Some(value.into());
TestingPolisVoteV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisVoteV1Builder<'a, S>
where
S: testing_polis_vote_v1_state::State,
S::Value: testing_polis_vote_v1_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<CowStr<'a>>,
) -> TestingPolisVoteV1Builder<'a, testing_polis_vote_v1_state::SetValue<S>> {
self._fields.3 = Option::Some(value.into());
TestingPolisVoteV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisVoteV1Builder<'a, S>
where
S: testing_polis_vote_v1_state::State,
S::CreatedAt: testing_polis_vote_v1_state::IsSet,
S::Value: testing_polis_vote_v1_state::IsSet,
S::Subject: testing_polis_vote_v1_state::IsSet,
S::Poll: testing_polis_vote_v1_state::IsSet,
{
pub fn build(self) -> TestingPolisVoteV1<'a> {
TestingPolisVoteV1 {
created_at: self._fields.0.unwrap(),
poll: self._fields.1.unwrap(),
subject: 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,
jacquard_common::types::value::Data<'a>,
>,
) -> TestingPolisVoteV1<'a> {
TestingPolisVoteV1 {
created_at: self._fields.0.unwrap(),
poll: self._fields.1.unwrap(),
subject: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_scot_comhairle_testingPolisVoteV1() -> 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("scot.comhairle.testingPolisVoteV1"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A vote on a statement in the Polis-style deliberation system",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("value"),
SmolStr::new_static("subject"), SmolStr::new_static("poll"),
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("Timestamp when the vote was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("poll"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#pollRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#statementRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The vote value")),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("pollRef"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("Reference to a poll record")),
required: Some(
vec![SmolStr::new_static("uri"), SmolStr::new_static("cid")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Content identifier of the poll record"),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("AT-URI of the poll record"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("statementRef"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Reference to a statement record"),
),
required: Some(
vec![SmolStr::new_static("uri"), SmolStr::new_static("cid")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Content identifier of the statement record",
),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("AT-URI of the statement record"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod poll_ref_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 Uri;
type Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Cid = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
type Cid = S::Cid;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct cid(());
}
}
pub struct PollRefBuilder<'a, S: poll_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<AtUri<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> PollRef<'a> {
pub fn new() -> PollRefBuilder<'a, poll_ref_state::Empty> {
PollRefBuilder::new()
}
}
impl<'a> PollRefBuilder<'a, poll_ref_state::Empty> {
pub fn new() -> Self {
PollRefBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Cid: poll_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> PollRefBuilder<'a, poll_ref_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
PollRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Uri: poll_ref_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> PollRefBuilder<'a, poll_ref_state::SetUri<S>> {
self._fields.1 = Option::Some(value.into());
PollRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Uri: poll_ref_state::IsSet,
S::Cid: poll_ref_state::IsSet,
{
pub fn build(self) -> PollRef<'a> {
PollRef {
cid: self._fields.0.unwrap(),
uri: 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>,
>,
) -> PollRef<'a> {
PollRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod statement_ref_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 Uri;
type Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Cid = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
type Cid = S::Cid;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct cid(());
}
}
pub struct StatementRefBuilder<'a, S: statement_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<AtUri<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> StatementRef<'a> {
pub fn new() -> StatementRefBuilder<'a, statement_ref_state::Empty> {
StatementRefBuilder::new()
}
}
impl<'a> StatementRefBuilder<'a, statement_ref_state::Empty> {
pub fn new() -> Self {
StatementRefBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> StatementRefBuilder<'a, S>
where
S: statement_ref_state::State,
S::Cid: statement_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> StatementRefBuilder<'a, statement_ref_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
StatementRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StatementRefBuilder<'a, S>
where
S: statement_ref_state::State,
S::Uri: statement_ref_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> StatementRefBuilder<'a, statement_ref_state::SetUri<S>> {
self._fields.1 = Option::Some(value.into());
StatementRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StatementRefBuilder<'a, S>
where
S: statement_ref_state::State,
S::Uri: statement_ref_state::IsSet,
S::Cid: statement_ref_state::IsSet,
{
pub fn build(self) -> StatementRef<'a> {
StatementRef {
cid: self._fields.0.unwrap(),
uri: 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>,
>,
) -> StatementRef<'a> {
StatementRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}