// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.admin.updateAccountHandle // // 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 UpdateAccountHandle<'a> { #[serde(borrow)] pub did: jacquard_common::types::string::Did<'a>, #[serde(borrow)] pub handle: jacquard_common::types::string::Handle<'a>, } pub mod update_account_handle_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 Did; type Handle; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Did = Unset; type Handle = Unset; } ///State transition - sets the `did` field to Set pub struct SetDid(PhantomData S>); impl sealed::Sealed for SetDid {} impl State for SetDid { type Did = Set; type Handle = S::Handle; } ///State transition - sets the `handle` field to Set pub struct SetHandle(PhantomData S>); impl sealed::Sealed for SetHandle {} impl State for SetHandle { type Did = S::Did; type Handle = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `did` field pub struct did(()); ///Marker type for the `handle` field pub struct handle(()); } } /// Builder for constructing an instance of this type pub struct UpdateAccountHandleBuilder<'a, S: update_account_handle_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ::core::option::Option>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> UpdateAccountHandle<'a> { /// Create a new builder for this type pub fn new() -> UpdateAccountHandleBuilder<'a, update_account_handle_state::Empty> { UpdateAccountHandleBuilder::new() } } impl<'a> UpdateAccountHandleBuilder<'a, update_account_handle_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { UpdateAccountHandleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> UpdateAccountHandleBuilder<'a, S> where S: update_account_handle_state::State, S::Did: update_account_handle_state::IsUnset, { /// Set the `did` field (required) pub fn did( mut self, value: impl Into>, ) -> UpdateAccountHandleBuilder<'a, update_account_handle_state::SetDid> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); UpdateAccountHandleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> UpdateAccountHandleBuilder<'a, S> where S: update_account_handle_state::State, S::Handle: update_account_handle_state::IsUnset, { /// Set the `handle` field (required) pub fn handle( mut self, value: impl Into>, ) -> UpdateAccountHandleBuilder<'a, update_account_handle_state::SetHandle> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); UpdateAccountHandleBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> UpdateAccountHandleBuilder<'a, S> where S: update_account_handle_state::State, S::Did: update_account_handle_state::IsSet, S::Handle: update_account_handle_state::IsSet, { /// Build the final struct pub fn build(self) -> UpdateAccountHandle<'a> { UpdateAccountHandle { did: self.__unsafe_private_named.0.unwrap(), handle: 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>, >, ) -> UpdateAccountHandle<'a> { UpdateAccountHandle { did: self.__unsafe_private_named.0.unwrap(), handle: self.__unsafe_private_named.1.unwrap(), extra_data: Some(extra_data), } } } /// Response type for ///com.atproto.admin.updateAccountHandle pub struct UpdateAccountHandleResponse; impl jacquard_common::xrpc::XrpcResp for UpdateAccountHandleResponse { const NSID: &'static str = "com.atproto.admin.updateAccountHandle"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for UpdateAccountHandle<'a> { const NSID: &'static str = "com.atproto.admin.updateAccountHandle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = UpdateAccountHandleResponse; } /// Endpoint type for ///com.atproto.admin.updateAccountHandle pub struct UpdateAccountHandleRequest; impl jacquard_common::xrpc::XrpcEndpoint for UpdateAccountHandleRequest { const PATH: &'static str = "/xrpc/com.atproto.admin.updateAccountHandle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = UpdateAccountHandle<'de>; type Response = UpdateAccountHandleResponse; }