// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: sh.weaver.graph.list // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum ListPurpose<'a> { ShWeaverGraphDefsCuratelist, ShWeaverGraphDefsReadinglist, Other(jacquard_common::CowStr<'a>), } impl<'a> ListPurpose<'a> { pub fn as_str(&self) -> &str { match self { Self::ShWeaverGraphDefsCuratelist => "sh.weaver.graph.defs#curatelist", Self::ShWeaverGraphDefsReadinglist => "sh.weaver.graph.defs#readinglist", Self::Other(s) => s.as_ref(), } } } impl<'a> From<&'a str> for ListPurpose<'a> { fn from(s: &'a str) -> Self { match s { "sh.weaver.graph.defs#curatelist" => Self::ShWeaverGraphDefsCuratelist, "sh.weaver.graph.defs#readinglist" => Self::ShWeaverGraphDefsReadinglist, _ => Self::Other(jacquard_common::CowStr::from(s)), } } } impl<'a> From for ListPurpose<'a> { fn from(s: String) -> Self { match s.as_str() { "sh.weaver.graph.defs#curatelist" => Self::ShWeaverGraphDefsCuratelist, "sh.weaver.graph.defs#readinglist" => Self::ShWeaverGraphDefsReadinglist, _ => Self::Other(jacquard_common::CowStr::from(s)), } } } impl<'a> AsRef for ListPurpose<'a> { fn as_ref(&self) -> &str { self.as_str() } } impl<'a> core::fmt::Display for ListPurpose<'a> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { write!(f, "{}", self.as_str()) } } impl<'a> serde::Serialize for ListPurpose<'a> { fn serialize(&self, serializer: S) -> Result where S: serde::Serializer, { serializer.serialize_str(self.as_str()) } } impl<'de, 'a> serde::Deserialize<'de> for ListPurpose<'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 jacquard_common::IntoStatic for ListPurpose<'_> { type Output = ListPurpose<'static>; fn into_static(self) -> Self::Output { match self { ListPurpose::ShWeaverGraphDefsCuratelist => { ListPurpose::ShWeaverGraphDefsCuratelist } ListPurpose::ShWeaverGraphDefsReadinglist => { ListPurpose::ShWeaverGraphDefsReadinglist } ListPurpose::Other(v) => ListPurpose::Other(v.into_static()), } } } /// A curated list of notebooks and/or entries. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct List<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub avatar: 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>, /// Display name for the list. #[serde(borrow)] pub name: jacquard_common::CowStr<'a>, /// The purpose/type of list. #[serde(borrow)] pub purpose: crate::sh_weaver::graph::list::ListPurpose<'a>, } pub mod list_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 Purpose; type Name; type CreatedAt; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Purpose = Unset; type Name = Unset; type CreatedAt = Unset; } ///State transition - sets the `purpose` field to Set pub struct SetPurpose(PhantomData S>); impl sealed::Sealed for SetPurpose {} impl State for SetPurpose { type Purpose = Set; type Name = S::Name; type CreatedAt = S::CreatedAt; } ///State transition - sets the `name` field to Set pub struct SetName(PhantomData S>); impl sealed::Sealed for SetName {} impl State for SetName { type Purpose = S::Purpose; type Name = Set; type CreatedAt = S::CreatedAt; } ///State transition - sets the `created_at` field to Set pub struct SetCreatedAt(PhantomData S>); impl sealed::Sealed for SetCreatedAt {} impl State for SetCreatedAt { type Purpose = S::Purpose; type Name = S::Name; type CreatedAt = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `purpose` field pub struct purpose(()); ///Marker type for the `name` field pub struct name(()); ///Marker type for the `created_at` field pub struct created_at(()); } } /// Builder for constructing an instance of this type pub struct ListBuilder<'a, S: list_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>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> List<'a> { /// Create a new builder for this type pub fn new() -> ListBuilder<'a, list_state::Empty> { ListBuilder::new() } } impl<'a> ListBuilder<'a, list_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { ListBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None, None, None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S: list_state::State> ListBuilder<'a, S> { /// Set the `avatar` field (optional) pub fn avatar( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.0 = 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.0 = value; self } } impl<'a, S> ListBuilder<'a, S> where S: list_state::State, S::CreatedAt: list_state::IsUnset, { /// Set the `createdAt` field (required) pub fn created_at( mut self, value: impl Into, ) -> ListBuilder<'a, list_state::SetCreatedAt> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); ListBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S: list_state::State> ListBuilder<'a, S> { /// Set the `description` field (optional) pub fn description( mut self, value: impl Into>>, ) -> Self { self.__unsafe_private_named.2 = 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.2 = value; self } } impl<'a, S> ListBuilder<'a, S> where S: list_state::State, S::Name: list_state::IsUnset, { /// Set the `name` field (required) pub fn name( mut self, value: impl Into>, ) -> ListBuilder<'a, list_state::SetName> { self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into()); ListBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> ListBuilder<'a, S> where S: list_state::State, S::Purpose: list_state::IsUnset, { /// Set the `purpose` field (required) pub fn purpose( mut self, value: impl Into>, ) -> ListBuilder<'a, list_state::SetPurpose> { self.__unsafe_private_named.4 = ::core::option::Option::Some(value.into()); ListBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> ListBuilder<'a, S> where S: list_state::State, S::Purpose: list_state::IsSet, S::Name: list_state::IsSet, S::CreatedAt: list_state::IsSet, { /// Build the final struct pub fn build(self) -> List<'a> { List { avatar: self.__unsafe_private_named.0, created_at: self.__unsafe_private_named.1.unwrap(), description: self.__unsafe_private_named.2, name: self.__unsafe_private_named.3.unwrap(), purpose: self.__unsafe_private_named.4.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>, >, ) -> List<'a> { List { avatar: self.__unsafe_private_named.0, created_at: self.__unsafe_private_named.1.unwrap(), description: self.__unsafe_private_named.2, name: self.__unsafe_private_named.3.unwrap(), purpose: self.__unsafe_private_named.4.unwrap(), extra_data: Some(extra_data), } } } impl<'a> List<'a> { pub fn uri( uri: impl Into>, ) -> Result< jacquard_common::types::uri::RecordUri<'a, ListRecord>, jacquard_common::types::uri::UriError, > { jacquard_common::types::uri::RecordUri::try_from_uri( jacquard_common::types::string::AtUri::new_cow(uri.into())?, ) } } /// 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 ListGetRecordOutput<'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: List<'a>, } impl From> for List<'_> { fn from(output: ListGetRecordOutput<'_>) -> Self { use jacquard_common::IntoStatic; output.value.into_static() } } impl jacquard_common::types::collection::Collection for List<'_> { const NSID: &'static str = "sh.weaver.graph.list"; type Record = ListRecord; } /// Marker type for deserializing records from this collection. #[derive(Debug, serde::Serialize, serde::Deserialize)] pub struct ListRecord; impl jacquard_common::xrpc::XrpcResp for ListRecord { const NSID: &'static str = "sh.weaver.graph.list"; const ENCODING: &'static str = "application/json"; type Output<'de> = ListGetRecordOutput<'de>; type Err<'de> = jacquard_common::types::collection::RecordError<'de>; } impl jacquard_common::types::collection::Collection for ListRecord { const NSID: &'static str = "sh.weaver.graph.list"; type Record = ListRecord; } impl<'a> ::jacquard_lexicon::schema::LexiconSchema for List<'a> { fn nsid() -> &'static str { "sh.weaver.graph.list" } fn def_name() -> &'static str { "main" } fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> { lexicon_doc_sh_weaver_graph_list() } 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.name; #[allow(unused_comparisons)] if ::len(value.as_ref()) > 64usize { return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "name", ), max: 64usize, actual: ::len(value.as_ref()), }); } } { let value = &self.name; #[allow(unused_comparisons)] if ::len(value.as_ref()) < 1usize { return Err(::jacquard_lexicon::validation::ConstraintError::MinLength { path: ::jacquard_lexicon::validation::ValidationPath::from_field( "name", ), min: 1usize, actual: ::len(value.as_ref()), }); } } Ok(()) } } fn lexicon_doc_sh_weaver_graph_list() -> ::jacquard_lexicon::lexicon::LexiconDoc< 'static, > { ::jacquard_lexicon::lexicon::LexiconDoc { lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1, id: ::jacquard_common::CowStr::new_static("sh.weaver.graph.list"), revision: None, description: None, defs: { let mut map = ::alloc::collections::BTreeMap::new(); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("listPurpose"), ::jacquard_lexicon::lexicon::LexUserType::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("main"), ::jacquard_lexicon::lexicon::LexUserType::Record(::jacquard_lexicon::lexicon::LexRecord { description: Some( ::jacquard_common::CowStr::new_static( "A curated list of notebooks and/or entries.", ), ), 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::smol_str::SmolStr::new_static("name"), ::jacquard_common::smol_str::SmolStr::new_static("purpose"), ::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("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( "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("name"), ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString { description: Some( ::jacquard_common::CowStr::new_static( "Display name for the list.", ), ), format: None, default: None, min_length: Some(1usize), max_length: Some(64usize), min_graphemes: None, max_graphemes: None, r#enum: None, r#const: None, known_values: None, }), ); map.insert( ::jacquard_common::smol_str::SmolStr::new_static("purpose"), ::jacquard_lexicon::lexicon::LexObjectProperty::Ref(::jacquard_lexicon::lexicon::LexRef { description: None, r#ref: ::jacquard_common::CowStr::new_static("#listPurpose"), }), ); map }, }), }), ); map }, } }