// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.feed.generator // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. /// Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct Generator<'a> { /// Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions #[serde(skip_serializing_if = "std::option::Option::is_none")] pub accepts_interactions: std::option::Option, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub avatar: std::option::Option>, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub content_mode: std::option::Option>, pub created_at: jacquard_common::types::string::Datetime, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub description: std::option::Option>, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub description_facets: std::option::Option< Vec>, >, #[serde(borrow)] pub did: jacquard_common::types::string::Did<'a>, #[serde(borrow)] pub display_name: jacquard_common::CowStr<'a>, /// Self-label values #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub labels: std::option::Option>, } pub mod generator_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 CreatedAt; type Did; type DisplayName; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type CreatedAt = Unset; type Did = Unset; type DisplayName = Unset; } ///State transition - sets the `created_at` field to Set pub struct SetCreatedAt(PhantomData S>); impl sealed::Sealed for SetCreatedAt {} impl State for SetCreatedAt { type CreatedAt = Set; type Did = S::Did; type DisplayName = S::DisplayName; } ///State transition - sets the `did` field to Set pub struct SetDid(PhantomData S>); impl sealed::Sealed for SetDid {} impl State for SetDid { type CreatedAt = S::CreatedAt; type Did = Set; type DisplayName = S::DisplayName; } ///State transition - sets the `display_name` field to Set pub struct SetDisplayName(PhantomData S>); impl sealed::Sealed for SetDisplayName {} impl State for SetDisplayName { type CreatedAt = S::CreatedAt; type Did = S::Did; type DisplayName = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `created_at` field pub struct created_at(()); ///Marker type for the `did` field pub struct did(()); ///Marker type for the `display_name` field pub struct display_name(()); } } /// Builder for constructing an instance of this type pub struct GeneratorBuilder<'a, S: generator_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option, ::core::option::Option>, ::core::option::Option>, ::core::option::Option, ::core::option::Option>, ::core::option::Option>>, ::core::option::Option>, ::core::option::Option>, ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> Generator<'a> { /// Create a new builder for this type pub fn new() -> GeneratorBuilder<'a, generator_state::Empty> { GeneratorBuilder::new() } } impl<'a> GeneratorBuilder<'a, generator_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GeneratorBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: ( None, None, None, None, None, None, None, None, None, ), _phantom: ::core::marker::PhantomData, } } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `acceptsInteractions` field (optional) pub fn accepts_interactions(mut self, value: impl Into>) -> Self { self.__unsafe_private_named.0 = value.into(); self } /// Set the `acceptsInteractions` field to an Option value (optional) pub fn maybe_accepts_interactions(mut self, value: Option) -> Self { self.__unsafe_private_named.0 = value; self } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `avatar` field (optional) pub fn avatar( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.1 = value.into(); self } /// Set the `avatar` field to an Option value (optional) pub fn maybe_avatar( mut self, value: Option>, ) -> Self { self.__unsafe_private_named.1 = value; self } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `contentMode` field (optional) pub fn content_mode( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.2 = value.into(); self } /// Set the `contentMode` field to an Option value (optional) pub fn maybe_content_mode( mut self, value: Option>, ) -> Self { self.__unsafe_private_named.2 = value; self } } impl<'a, S> GeneratorBuilder<'a, S> where S: generator_state::State, S::CreatedAt: generator_state::IsUnset, { /// Set the `createdAt` field (required) pub fn created_at( mut self, value: impl Into, ) -> GeneratorBuilder<'a, generator_state::SetCreatedAt> { self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into()); GeneratorBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `description` field (optional) pub fn description( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.4 = value.into(); self } /// Set the `description` field to an Option value (optional) pub fn maybe_description( mut self, value: Option>, ) -> Self { self.__unsafe_private_named.4 = value; self } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `descriptionFacets` field (optional) pub fn description_facets( mut self, value: impl Into>>>, ) -> Self { self.__unsafe_private_named.5 = value.into(); self } /// Set the `descriptionFacets` field to an Option value (optional) pub fn maybe_description_facets( mut self, value: Option>>, ) -> Self { self.__unsafe_private_named.5 = value; self } } impl<'a, S> GeneratorBuilder<'a, S> where S: generator_state::State, S::Did: generator_state::IsUnset, { /// Set the `did` field (required) pub fn did( mut self, value: impl Into>, ) -> GeneratorBuilder<'a, generator_state::SetDid> { self.__unsafe_private_named.6 = ::core::option::Option::Some(value.into()); GeneratorBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GeneratorBuilder<'a, S> where S: generator_state::State, S::DisplayName: generator_state::IsUnset, { /// Set the `displayName` field (required) pub fn display_name( mut self, value: impl Into>, ) -> GeneratorBuilder<'a, generator_state::SetDisplayName> { self.__unsafe_private_named.7 = ::core::option::Option::Some(value.into()); GeneratorBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S: generator_state::State> GeneratorBuilder<'a, S> { /// Set the `labels` field (optional) pub fn labels( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.8 = value.into(); self } /// Set the `labels` field to an Option value (optional) pub fn maybe_labels( mut self, value: Option>, ) -> Self { self.__unsafe_private_named.8 = value; self } } impl<'a, S> GeneratorBuilder<'a, S> where S: generator_state::State, S::CreatedAt: generator_state::IsSet, S::Did: generator_state::IsSet, S::DisplayName: generator_state::IsSet, { /// Build the final struct pub fn build(self) -> Generator<'a> { Generator { accepts_interactions: self.__unsafe_private_named.0, avatar: self.__unsafe_private_named.1, content_mode: self.__unsafe_private_named.2, created_at: self.__unsafe_private_named.3.unwrap(), description: self.__unsafe_private_named.4, description_facets: self.__unsafe_private_named.5, did: self.__unsafe_private_named.6.unwrap(), display_name: self.__unsafe_private_named.7.unwrap(), labels: self.__unsafe_private_named.8, 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>, >, ) -> Generator<'a> { Generator { accepts_interactions: self.__unsafe_private_named.0, avatar: self.__unsafe_private_named.1, content_mode: self.__unsafe_private_named.2, created_at: self.__unsafe_private_named.3.unwrap(), description: self.__unsafe_private_named.4, description_facets: self.__unsafe_private_named.5, did: self.__unsafe_private_named.6.unwrap(), display_name: self.__unsafe_private_named.7.unwrap(), labels: self.__unsafe_private_named.8, extra_data: Some(extra_data), } } } impl<'a> Generator<'a> { pub fn uri( uri: impl Into>, ) -> Result< jacquard_common::types::uri::RecordUri<'a, GeneratorRecord>, jacquard_common::types::uri::UriError, > { jacquard_common::types::uri::RecordUri::try_from_uri( jacquard_common::types::string::AtUri::new_cow(uri.into())?, ) } } #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum GeneratorContentMode<'a> { ContentModeUnspecified, ContentModeVideo, Other(jacquard_common::CowStr<'a>), } impl<'a> GeneratorContentMode<'a> { pub fn as_str(&self) -> &str { match self { Self::ContentModeUnspecified => "app.bsky.feed.defs#contentModeUnspecified", Self::ContentModeVideo => "app.bsky.feed.defs#contentModeVideo", Self::Other(s) => s.as_ref(), } } } impl<'a> From<&'a str> for GeneratorContentMode<'a> { fn from(s: &'a str) -> Self { match s { "app.bsky.feed.defs#contentModeUnspecified" => Self::ContentModeUnspecified, "app.bsky.feed.defs#contentModeVideo" => Self::ContentModeVideo, _ => Self::Other(jacquard_common::CowStr::from(s)), } } } impl<'a> From for GeneratorContentMode<'a> { fn from(s: String) -> Self { match s.as_str() { "app.bsky.feed.defs#contentModeUnspecified" => Self::ContentModeUnspecified, "app.bsky.feed.defs#contentModeVideo" => Self::ContentModeVideo, _ => Self::Other(jacquard_common::CowStr::from(s)), } } } impl<'a> core::fmt::Display for GeneratorContentMode<'a> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { write!(f, "{}", self.as_str()) } } impl<'a> AsRef for GeneratorContentMode<'a> { fn as_ref(&self) -> &str { self.as_str() } } impl<'a> serde::Serialize for GeneratorContentMode<'a> { fn serialize(&self, serializer: S) -> Result where S: serde::Serializer, { serializer.serialize_str(self.as_str()) } } impl<'de, 'a> serde::Deserialize<'de> for GeneratorContentMode<'a> where 'de: 'a, { fn deserialize(deserializer: D) -> Result where D: serde::Deserializer<'de>, { let s = <&'de str>::deserialize(deserializer)?; Ok(Self::from(s)) } } impl<'a> Default for GeneratorContentMode<'a> { fn default() -> Self { Self::Other(Default::default()) } } impl jacquard_common::IntoStatic for GeneratorContentMode<'_> { type Output = GeneratorContentMode<'static>; fn into_static(self) -> Self::Output { match self { GeneratorContentMode::ContentModeUnspecified => { GeneratorContentMode::ContentModeUnspecified } GeneratorContentMode::ContentModeVideo => { GeneratorContentMode::ContentModeVideo } GeneratorContentMode::Other(v) => { GeneratorContentMode::Other(v.into_static()) } } } } /// Typed wrapper for GetRecord response with this collection's record type. #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GeneratorGetRecordOutput<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub cid: std::option::Option>, #[serde(borrow)] pub uri: jacquard_common::types::string::AtUri<'a>, #[serde(borrow)] pub value: Generator<'a>, } impl From> for Generator<'_> { fn from(output: GeneratorGetRecordOutput<'_>) -> Self { use jacquard_common::IntoStatic; output.value.into_static() } } impl jacquard_common::types::collection::Collection for Generator<'_> { const NSID: &'static str = "app.bsky.feed.generator"; type Record = GeneratorRecord; } /// Marker type for deserializing records from this collection. #[derive(Debug, serde::Serialize, serde::Deserialize)] pub struct GeneratorRecord; impl jacquard_common::xrpc::XrpcResp for GeneratorRecord { const NSID: &'static str = "app.bsky.feed.generator"; const ENCODING: &'static str = "application/json"; type Output<'de> = GeneratorGetRecordOutput<'de>; type Err<'de> = jacquard_common::types::collection::RecordError<'de>; } impl jacquard_common::types::collection::Collection for GeneratorRecord { const NSID: &'static str = "app.bsky.feed.generator"; type Record = GeneratorRecord; } impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Generator<'a> { fn nsid() -> &'static str { "app.bsky.feed.generator" } fn def_name() -> &'static str { "main" } fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> { lexicon_doc_app_bsky_feed_generator() } fn validate( &self, ) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> { if let Some(ref value) = self.description { #[allow(unused_comparisons)] if ::len(value.as_ref()) > 3000usize { return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "description", ), max: 3000usize, actual: ::len(value.as_ref()), }); } } if let Some(ref value) = self.description { { let count = ::unicode_segmentation::UnicodeSegmentation::graphemes( value.as_ref(), true, ) .count(); if count > 300usize { return Err(::jacquard_lexicon::validation::ConstraintError::MaxGraphemes { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "description", ), max: 300usize, actual: count, }); } } } { let value = &self.display_name; #[allow(unused_comparisons)] if ::len(value.as_ref()) > 240usize { return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "display_name", ), max: 240usize, actual: ::len(value.as_ref()), }); } } { let value = &self.display_name; { let count = ::unicode_segmentation::UnicodeSegmentation::graphemes( value.as_ref(), true, ) .count(); if count > 24usize { return Err(::jacquard_lexicon::validation::ConstraintError::MaxGraphemes { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "display_name", ), max: 24usize, actual: count, }); } } } Ok(()) } } fn lexicon_doc_app_bsky_feed_generator() -> ::jacquard_lexicon::lexicon::LexiconDoc< 'static, > { ::jacquard_lexicon::lexicon::LexiconDoc { lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1, id: ::jacquard_common::CowStr::new_static("app.bsky.feed.generator"), 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::Record(::jacquard_lexicon::lexicon::LexRecord { description: Some( ::jacquard_common::CowStr::new_static( "Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.", ), ), key: Some(::jacquard_common::CowStr::new_static("any")), record: ::jacquard_lexicon::lexicon::LexRecordRecord::Object(::jacquard_lexicon::lexicon::LexObject { description: None, required: Some( vec![ ::jacquard_common::smol_str::SmolStr::new_static("did"), ::jacquard_common::smol_str::SmolStr::new_static("displayName"), ::jacquard_common::smol_str::SmolStr::new_static("createdAt") ], ), nullable: None, properties: { #[allow(unused_mut)] let mut map = ::alloc::collections::BTreeMap::new(); map.insert( ::jacquard_common::smol_str::SmolStr::new_static( "acceptsInteractions", ), ::jacquard_lexicon::lexicon::LexObjectProperty::Boolean(::jacquard_lexicon::lexicon::LexBoolean { description: None, default: None, r#const: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("avatar"), ::jacquard_lexicon::lexicon::LexObjectProperty::Blob(::jacquard_lexicon::lexicon::LexBlob { description: None, accept: None, max_size: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static( "contentMode", ), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: None, format: None, 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::smol_str::SmolStr::new_static( "createdAt", ), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: None, 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::smol_str::SmolStr::new_static( "description", ), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: None, format: None, default: None, min_length: None, max_length: Some(3000usize), min_graphemes: None, max_graphemes: Some(300usize), r#enum: None, r#const: None, known_values: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static( "descriptionFacets", ), ::jacquard_lexicon::lexicon::LexObjectProperty::Array(::jacquard_lexicon::lexicon::LexArray { description: None, items: ::jacquard_lexicon::lexicon::LexArrayItem::Ref(::jacquard_lexicon::lexicon::LexRef { description: None, r#ref: ::jacquard_common::CowStr::new_static( "app.bsky.richtext.facet", ), }), min_length: None, max_length: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("did"), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: None, format: Some( ::jacquard_lexicon::lexicon::LexStringFormat::Did, ), 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::smol_str::SmolStr::new_static( "displayName", ), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: None, format: None, default: None, min_length: None, max_length: Some(240usize), min_graphemes: None, max_graphemes: Some(24usize), r#enum: None, r#const: None, known_values: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("labels"), ::jacquard_lexicon::lexicon::LexObjectProperty::Union(::jacquard_lexicon::lexicon::LexRefUnion { description: Some( ::jacquard_common::CowStr::new_static("Self-label values"), ), refs: vec![ ::jacquard_common::CowStr::new_static("com.atproto.label.defs#selfLabels") ], closed: None, }), ); map }, }), }), ); map }, } }