// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.server.deleteAccount // // 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 DeleteAccount<'a> { #[serde(borrow)] pub did: jacquard_common::types::string::Did<'a>, #[serde(borrow)] pub password: jacquard_common::CowStr<'a>, #[serde(borrow)] pub token: jacquard_common::CowStr<'a>, } pub mod delete_account_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 Token; type Did; type Password; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Token = Unset; type Did = Unset; type Password = Unset; } ///State transition - sets the `token` field to Set pub struct SetToken(PhantomData S>); impl sealed::Sealed for SetToken {} impl State for SetToken { type Token = Set; type Did = S::Did; type Password = S::Password; } ///State transition - sets the `did` field to Set pub struct SetDid(PhantomData S>); impl sealed::Sealed for SetDid {} impl State for SetDid { type Token = S::Token; type Did = Set; type Password = S::Password; } ///State transition - sets the `password` field to Set pub struct SetPassword(PhantomData S>); impl sealed::Sealed for SetPassword {} impl State for SetPassword { type Token = S::Token; type Did = S::Did; type Password = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `token` field pub struct token(()); ///Marker type for the `did` field pub struct did(()); ///Marker type for the `password` field pub struct password(()); } } /// Builder for constructing an instance of this type pub struct DeleteAccountBuilder<'a, S: delete_account_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ::core::option::Option>, ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> DeleteAccount<'a> { /// Create a new builder for this type pub fn new() -> DeleteAccountBuilder<'a, delete_account_state::Empty> { DeleteAccountBuilder::new() } } impl<'a> DeleteAccountBuilder<'a, delete_account_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { DeleteAccountBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteAccountBuilder<'a, S> where S: delete_account_state::State, S::Did: delete_account_state::IsUnset, { /// Set the `did` field (required) pub fn did( mut self, value: impl Into>, ) -> DeleteAccountBuilder<'a, delete_account_state::SetDid> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); DeleteAccountBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteAccountBuilder<'a, S> where S: delete_account_state::State, S::Password: delete_account_state::IsUnset, { /// Set the `password` field (required) pub fn password( mut self, value: impl Into>, ) -> DeleteAccountBuilder<'a, delete_account_state::SetPassword> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); DeleteAccountBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteAccountBuilder<'a, S> where S: delete_account_state::State, S::Token: delete_account_state::IsUnset, { /// Set the `token` field (required) pub fn token( mut self, value: impl Into>, ) -> DeleteAccountBuilder<'a, delete_account_state::SetToken> { self.__unsafe_private_named.2 = ::core::option::Option::Some(value.into()); DeleteAccountBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteAccountBuilder<'a, S> where S: delete_account_state::State, S::Token: delete_account_state::IsSet, S::Did: delete_account_state::IsSet, S::Password: delete_account_state::IsSet, { /// Build the final struct pub fn build(self) -> DeleteAccount<'a> { DeleteAccount { did: self.__unsafe_private_named.0.unwrap(), password: self.__unsafe_private_named.1.unwrap(), token: self.__unsafe_private_named.2.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>, >, ) -> DeleteAccount<'a> { DeleteAccount { did: self.__unsafe_private_named.0.unwrap(), password: self.__unsafe_private_named.1.unwrap(), token: self.__unsafe_private_named.2.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 DeleteAccountError<'a> { #[serde(rename = "ExpiredToken")] ExpiredToken(std::option::Option>), #[serde(rename = "InvalidToken")] InvalidToken(std::option::Option>), } impl core::fmt::Display for DeleteAccountError<'_> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { match self { Self::ExpiredToken(msg) => { write!(f, "ExpiredToken")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::InvalidToken(msg) => { write!(f, "InvalidToken")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } /// Response type for ///com.atproto.server.deleteAccount pub struct DeleteAccountResponse; impl jacquard_common::xrpc::XrpcResp for DeleteAccountResponse { const NSID: &'static str = "com.atproto.server.deleteAccount"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = DeleteAccountError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for DeleteAccount<'a> { const NSID: &'static str = "com.atproto.server.deleteAccount"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = DeleteAccountResponse; } /// Endpoint type for ///com.atproto.server.deleteAccount pub struct DeleteAccountRequest; impl jacquard_common::xrpc::XrpcEndpoint for DeleteAccountRequest { const PATH: &'static str = "/xrpc/com.atproto.server.deleteAccount"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = DeleteAccount<'de>; type Response = DeleteAccountResponse; }