atrium_api/com/atproto/identity/
update_handle.rs1pub const NSID: &str = "com.atproto.identity.updateHandle";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct InputData {
7 pub handle: crate::types::string::Handle,
9}
10pub type Input = crate::types::Object<InputData>;
11#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
12#[serde(tag = "error", content = "message")]
13pub enum Error {}
14impl std::fmt::Display for Error {
15 fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
16 Ok(())
17 }
18}