#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisPollV1<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub closed_at: std::option::Option<jacquard_common::types::string::Datetime>,
pub created_at: jacquard_common::types::string::Datetime,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub description: std::option::Option<jacquard_common::CowStr<'a>>,
#[serde(borrow)]
pub topic: jacquard_common::CowStr<'a>,
}
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> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::string::Datetime>,
::core::option::Option<jacquard_common::types::string::Datetime>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::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 {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: testing_polis_poll_v1_state::State> TestingPolisPollV1Builder<'a, S> {
pub fn closed_at(
mut self,
value: impl Into<Option<jacquard_common::types::string::Datetime>>,
) -> Self {
self.__unsafe_private_named.0 = value.into();
self
}
pub fn maybe_closed_at(
mut self,
value: Option<jacquard_common::types::string::Datetime>,
) -> Self {
self.__unsafe_private_named.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<jacquard_common::types::string::Datetime>,
) -> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::SetCreatedAt<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
TestingPolisPollV1Builder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: testing_polis_poll_v1_state::State> TestingPolisPollV1Builder<'a, S> {
pub fn description(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.2 = value.into();
self
}
pub fn maybe_description(
mut self,
value: Option<jacquard_common::CowStr<'a>>,
) -> Self {
self.__unsafe_private_named.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<jacquard_common::CowStr<'a>>,
) -> TestingPolisPollV1Builder<'a, testing_polis_poll_v1_state::SetTopic<S>> {
self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into());
TestingPolisPollV1Builder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::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.__unsafe_private_named.0,
created_at: self.__unsafe_private_named.1.unwrap(),
description: self.__unsafe_private_named.2,
topic: self.__unsafe_private_named.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> TestingPolisPollV1<'a> {
TestingPolisPollV1 {
closed_at: self.__unsafe_private_named.0,
created_at: self.__unsafe_private_named.1.unwrap(),
description: self.__unsafe_private_named.2,
topic: self.__unsafe_private_named.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
impl<'a> TestingPolisPollV1<'a> {
pub fn uri(
uri: impl Into<jacquard_common::CowStr<'a>>,
) -> Result<
jacquard_common::types::uri::RecordUri<'a, TestingPolisPollV1Record>,
jacquard_common::types::uri::UriError,
> {
jacquard_common::types::uri::RecordUri::try_from_uri(
jacquard_common::types::string::AtUri::new_cow(uri.into())?,
)
}
}
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisPollV1GetRecordOutput<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub uri: jacquard_common::types::string::AtUri<'a>,
#[serde(borrow)]
pub value: TestingPolisPollV1<'a>,
}
impl From<TestingPolisPollV1GetRecordOutput<'_>> for TestingPolisPollV1<'_> {
fn from(output: TestingPolisPollV1GetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl jacquard_common::types::collection::Collection for TestingPolisPollV1<'_> {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
type Record = TestingPolisPollV1Record;
}
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct TestingPolisPollV1Record;
impl jacquard_common::xrpc::XrpcResp for TestingPolisPollV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
const ENCODING: &'static str = "application/json";
type Output<'de> = TestingPolisPollV1GetRecordOutput<'de>;
type Err<'de> = jacquard_common::types::collection::RecordError<'de>;
}
impl jacquard_common::types::collection::Collection for TestingPolisPollV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisPollV1";
type Record = TestingPolisPollV1Record;
}
impl<'a> ::jacquard_lexicon::schema::LexiconSchema for TestingPolisPollV1<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisPollV1"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisPollV1()
}
fn validate(
&self,
) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::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(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"topic",
),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn lexicon_doc_scot_comhairle_testingPolisPollV1() -> ::jacquard_lexicon::lexicon::LexiconDoc<
'static,
> {
::jacquard_lexicon::lexicon::LexiconDoc {
lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
id: ::jacquard_common::CowStr::new_static("scot.comhairle.testingPolisPollV1"),
revision: None,
description: None,
defs: {
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static("main"),
::jacquard_lexicon::lexicon::LexUserType::Record(::jacquard_lexicon::lexicon::LexRecord {
description: Some(
::jacquard_common::CowStr::new_static(
"A poll/topic for deliberation in the Polis-style system",
),
),
key: Some(::jacquard_common::CowStr::new_static("tid")),
record: ::jacquard_lexicon::lexicon::LexRecordRecord::Object(::jacquard_lexicon::lexicon::LexObject {
description: None,
required: Some(
vec![
::jacquard_common::deps::smol_str::SmolStr::new_static("topic"),
::jacquard_common::deps::smol_str::SmolStr::new_static("createdAt")
],
),
nullable: None,
properties: {
#[allow(unused_mut)]
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"closedAt",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Optional timestamp when the poll was closed to new submissions",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"createdAt",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Timestamp when the poll was created",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"description",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Optional longer description of the poll",
),
),
format: None,
default: None,
min_length: None,
max_length: Some(3000usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"topic",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The topic or question being discussed",
),
),
format: None,
default: None,
min_length: None,
max_length: Some(300usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map
},
}),
}),
);
map
},
}
}