#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::Handle;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct UpdateHandle<'a> {
#[serde(borrow)]
pub handle: Handle<'a>,
}
pub struct UpdateHandleResponse;
impl jacquard_common::xrpc::XrpcResp for UpdateHandleResponse {
const NSID: &'static str = "com.atproto.identity.updateHandle";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for UpdateHandle<'a> {
const NSID: &'static str = "com.atproto.identity.updateHandle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = UpdateHandleResponse;
}
pub struct UpdateHandleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UpdateHandleRequest {
const PATH: &'static str = "/xrpc/com.atproto.identity.updateHandle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = UpdateHandle<'de>;
type Response = UpdateHandleResponse;
}
pub mod update_handle_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Handle;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Handle = Unset;
}
pub struct SetHandle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetHandle<S> {}
impl<S: State> State for SetHandle<S> {
type Handle = Set<members::handle>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct handle(());
}
}
pub struct UpdateHandleBuilder<'a, S: update_handle_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Handle<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> UpdateHandle<'a> {
pub fn new() -> UpdateHandleBuilder<'a, update_handle_state::Empty> {
UpdateHandleBuilder::new()
}
}
impl<'a> UpdateHandleBuilder<'a, update_handle_state::Empty> {
pub fn new() -> Self {
UpdateHandleBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> UpdateHandleBuilder<'a, S>
where
S: update_handle_state::State,
S::Handle: update_handle_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<'a>>,
) -> UpdateHandleBuilder<'a, update_handle_state::SetHandle<S>> {
self._fields.0 = Option::Some(value.into());
UpdateHandleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> UpdateHandleBuilder<'a, S>
where
S: update_handle_state::State,
S::Handle: update_handle_state::IsSet,
{
pub fn build(self) -> UpdateHandle<'a> {
UpdateHandle {
handle: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> UpdateHandle<'a> {
UpdateHandle {
handle: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}