// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: pub.leaflet.blocks.poll // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct Poll<'a> { #[serde(borrow)] pub poll_ref: crate::com_atproto::repo::strong_ref::StrongRef<'a>, } pub mod poll_state { pub use crate::builder_types::{Set, Unset, IsSet, IsUnset}; #[allow(unused)] use ::core::marker::PhantomData; mod sealed { pub trait Sealed {} } /// State trait tracking which required fields have been set pub trait State: sealed::Sealed { type PollRef; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type PollRef = Unset; } ///State transition - sets the `poll_ref` field to Set pub struct SetPollRef(PhantomData S>); impl sealed::Sealed for SetPollRef {} impl State for SetPollRef { type PollRef = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `poll_ref` field pub struct poll_ref(()); } } /// Builder for constructing an instance of this type pub struct PollBuilder<'a, S: poll_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> Poll<'a> { /// Create a new builder for this type pub fn new() -> PollBuilder<'a, poll_state::Empty> { PollBuilder::new() } } impl<'a> PollBuilder<'a, poll_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { PollBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None,), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> PollBuilder<'a, S> where S: poll_state::State, S::PollRef: poll_state::IsUnset, { /// Set the `pollRef` field (required) pub fn poll_ref( mut self, value: impl Into>, ) -> PollBuilder<'a, poll_state::SetPollRef> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); PollBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> PollBuilder<'a, S> where S: poll_state::State, S::PollRef: poll_state::IsSet, { /// Build the final struct pub fn build(self) -> Poll<'a> { Poll { poll_ref: self.__unsafe_private_named.0.unwrap(), extra_data: Default::default(), } } /// Build the final struct with custom extra_data pub fn build_with_data( self, extra_data: std::collections::BTreeMap< jacquard_common::smol_str::SmolStr, jacquard_common::types::value::Data<'a>, >, ) -> Poll<'a> { Poll { poll_ref: self.__unsafe_private_named.0.unwrap(), extra_data: Some(extra_data), } } } fn lexicon_doc_pub_leaflet_blocks_poll() -> ::jacquard_lexicon::lexicon::LexiconDoc< 'static, > { ::jacquard_lexicon::lexicon::LexiconDoc { lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1, id: ::jacquard_common::CowStr::new_static("pub.leaflet.blocks.poll"), revision: None, description: None, defs: { let mut map = ::alloc::collections::BTreeMap::new(); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("main"), ::jacquard_lexicon::lexicon::LexUserType::Object(::jacquard_lexicon::lexicon::LexObject { description: None, required: Some( vec![::jacquard_common::smol_str::SmolStr::new_static("pollRef")], ), nullable: None, properties: { #[allow(unused_mut)] let mut map = ::alloc::collections::BTreeMap::new(); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("pollRef"), ::jacquard_lexicon::lexicon::LexObjectProperty::Ref(::jacquard_lexicon::lexicon::LexRef { description: None, r#ref: ::jacquard_common::CowStr::new_static( "com.atproto.repo.strongRef", ), }), ); map }, }), ); map }, } } impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Poll<'a> { fn nsid() -> &'static str { "pub.leaflet.blocks.poll" } fn def_name() -> &'static str { "main" } fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> { lexicon_doc_pub_leaflet_blocks_poll() } fn validate( &self, ) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> { Ok(()) } }