pub struct Handle {
pub did: String,
pub handle: String,
pub pds: String,
pub verification_methods: Vec<String>,
}Expand description
Resolved handle information linking DID to human-readable identifier. Contains the complete identity resolution result.
Fields§
§did: StringThe resolved DID identifier.
handle: StringHuman-readable handle (e.g., “alice.bsky.social”).
pds: StringPersonal Data Server URL hosting the identity.
verification_methods: Vec<String>Available cryptographic verification methods.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Handle
impl<'de> Deserialize<'de> for Handle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Handle
impl RefUnwindSafe for Handle
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl UnwindSafe for Handle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more