#[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 TestingPolisPollV1<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub closed_at: Option<Datetime>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub topic: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisPollV1GetRecordOutput<'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: TestingPolisPollV1<'a>,
}
impl<'a> TestingPolisPollV1<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, TestingPolisPollV1Record>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TestingPolisPollV1Record;
impl XrpcResp for TestingPolisPollV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
const ENCODING: &'static str = "application/json";
type Output<'de> = TestingPolisPollV1GetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<TestingPolisPollV1GetRecordOutput<'_>> for TestingPolisPollV1<'_> {
fn from(output: TestingPolisPollV1GetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for TestingPolisPollV1<'_> {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
type Record = TestingPolisPollV1Record;
}
impl Collection for TestingPolisPollV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
type Record = TestingPolisPollV1Record;
}
impl<'a> LexiconSchema for TestingPolisPollV1<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisPollV1"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisPollV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.topic;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("topic"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod testing_polis_poll_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 Topic;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Topic = Unset;
type CreatedAt = Unset;
}
pub struct SetTopic<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTopic<S> {}
impl<S: State> State for SetTopic<S> {
type Topic = Set<members::topic>;
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 Topic = S::Topic;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct topic(());
pub struct created_at(());
}
}
pub struct TestingPolisPollV1Builder<'a, S: testing_polis_poll_v1_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TestingPolisPollV1<'a> {
pub fn new() -> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::Empty> {
TestingPolisPollV1Builder::new()
}
}
impl<'a> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::Empty> {
pub fn new() -> Self {
TestingPolisPollV1Builder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: testing_polis_poll_v1_state::State> TestingPolisPollV1Builder<'a, S> {
pub fn closed_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_closed_at(mut self, value: Option<Datetime>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> TestingPolisPollV1Builder<'a, S>
where
S: testing_polis_poll_v1_state::State,
S::CreatedAt: testing_polis_poll_v1_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
TestingPolisPollV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: testing_polis_poll_v1_state::State> TestingPolisPollV1Builder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> TestingPolisPollV1Builder<'a, S>
where
S: testing_polis_poll_v1_state::State,
S::Topic: testing_polis_poll_v1_state::IsUnset,
{
pub fn topic(
mut self,
value: impl Into<CowStr<'a>>,
) -> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::SetTopic<S>> {
self._fields.3 = Option::Some(value.into());
TestingPolisPollV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisPollV1Builder<'a, S>
where
S: testing_polis_poll_v1_state::State,
S::Topic: testing_polis_poll_v1_state::IsSet,
S::CreatedAt: testing_polis_poll_v1_state::IsSet,
{
pub fn build(self) -> TestingPolisPollV1<'a> {
TestingPolisPollV1 {
closed_at: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
topic: 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>,
>,
) -> TestingPolisPollV1<'a> {
TestingPolisPollV1 {
closed_at: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
topic: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_scot_comhairle_testingPolisPollV1() -> 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.testingPolisPollV1"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A poll/topic for deliberation in the Polis-style system",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("topic"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("closedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional timestamp when the poll was closed to new submissions",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp when the poll was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional longer description of the poll",
),
),
max_length: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("topic"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The topic or question being discussed"),
),
max_length: Some(300usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}