// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.bookmark.createBookmark // // 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 CreateBookmark<'a> { #[serde(borrow)] pub cid: jacquard_common::types::string::Cid<'a>, #[serde(borrow)] pub uri: jacquard_common::types::string::AtUri<'a>, } pub mod create_bookmark_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 Uri; type Cid; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Uri = Unset; type Cid = Unset; } ///State transition - sets the `uri` field to Set pub struct SetUri(PhantomData S>); impl sealed::Sealed for SetUri {} impl State for SetUri { type Uri = Set; type Cid = S::Cid; } ///State transition - sets the `cid` field to Set pub struct SetCid(PhantomData S>); impl sealed::Sealed for SetCid {} impl State for SetCid { type Uri = S::Uri; type Cid = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `uri` field pub struct uri(()); ///Marker type for the `cid` field pub struct cid(()); } } /// Builder for constructing an instance of this type pub struct CreateBookmarkBuilder<'a, S: create_bookmark_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> CreateBookmark<'a> { /// Create a new builder for this type pub fn new() -> CreateBookmarkBuilder<'a, create_bookmark_state::Empty> { CreateBookmarkBuilder::new() } } impl<'a> CreateBookmarkBuilder<'a, create_bookmark_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { CreateBookmarkBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> CreateBookmarkBuilder<'a, S> where S: create_bookmark_state::State, S::Cid: create_bookmark_state::IsUnset, { /// Set the `cid` field (required) pub fn cid( mut self, value: impl Into>, ) -> CreateBookmarkBuilder<'a, create_bookmark_state::SetCid> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); CreateBookmarkBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> CreateBookmarkBuilder<'a, S> where S: create_bookmark_state::State, S::Uri: create_bookmark_state::IsUnset, { /// Set the `uri` field (required) pub fn uri( mut self, value: impl Into>, ) -> CreateBookmarkBuilder<'a, create_bookmark_state::SetUri> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); CreateBookmarkBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> CreateBookmarkBuilder<'a, S> where S: create_bookmark_state::State, S::Uri: create_bookmark_state::IsSet, S::Cid: create_bookmark_state::IsSet, { /// Build the final struct pub fn build(self) -> CreateBookmark<'a> { CreateBookmark { cid: self.__unsafe_private_named.0.unwrap(), uri: self.__unsafe_private_named.1.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>, >, ) -> CreateBookmark<'a> { CreateBookmark { cid: self.__unsafe_private_named.0.unwrap(), uri: self.__unsafe_private_named.1.unwrap(), extra_data: Some(extra_data), } } } #[jacquard_derive::open_union] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic, jacquard_derive::IntoStatic )] #[serde(tag = "error", content = "message")] #[serde(bound(deserialize = "'de: 'a"))] pub enum CreateBookmarkError<'a> { /// The URI to be bookmarked is for an unsupported collection. #[serde(rename = "UnsupportedCollection")] UnsupportedCollection(std::option::Option>), } impl core::fmt::Display for CreateBookmarkError<'_> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { match self { Self::UnsupportedCollection(msg) => { write!(f, "UnsupportedCollection")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } /// Response type for ///app.bsky.bookmark.createBookmark pub struct CreateBookmarkResponse; impl jacquard_common::xrpc::XrpcResp for CreateBookmarkResponse { const NSID: &'static str = "app.bsky.bookmark.createBookmark"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = CreateBookmarkError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for CreateBookmark<'a> { const NSID: &'static str = "app.bsky.bookmark.createBookmark"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = CreateBookmarkResponse; } /// Endpoint type for ///app.bsky.bookmark.createBookmark pub struct CreateBookmarkRequest; impl jacquard_common::xrpc::XrpcEndpoint for CreateBookmarkRequest { const PATH: &'static str = "/xrpc/app.bsky.bookmark.createBookmark"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = CreateBookmark<'de>; type Response = CreateBookmarkResponse; }