pub enum InputType {
Handle(String),
Plc(String),
Web(String),
}Expand description
Type of input identifier for resolution. Distinguishes between handles and different DID methods.
Variants§
Handle(String)
AT Protocol handle (e.g., “alice.bsky.social”).
Plc(String)
PLC DID identifier (e.g., “did:plc:abc123”).
Web(String)
Web DID identifier (e.g., “did:web:example.com”).
Auto Trait Implementations§
impl Freeze for InputType
impl RefUnwindSafe for InputType
impl Send for InputType
impl Sync for InputType
impl Unpin for InputType
impl UnwindSafe for InputType
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