pub struct RegistrationOutcome {
pub did_prefix: String,
pub registry: String,
pub platform_claims_indexed: usize,
}Expand description
Outcome of a successful registry registration.
Usage:
ⓘ
if let Some(reg) = result.registered {
println!("Registered {} at {}", reg.did_prefix, reg.registry);
}Fields§
§did_prefix: StringThe KERI prefix portion of the registered DID.
registry: StringThe registry URL where the identity was registered.
platform_claims_indexed: usizeNumber of platform claims indexed by the registry.
Trait Implementations§
Source§impl Clone for RegistrationOutcome
impl Clone for RegistrationOutcome
Source§fn clone(&self) -> RegistrationOutcome
fn clone(&self) -> RegistrationOutcome
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RegistrationOutcome
impl RefUnwindSafe for RegistrationOutcome
impl Send for RegistrationOutcome
impl Sync for RegistrationOutcome
impl Unpin for RegistrationOutcome
impl UnsafeUnpin for RegistrationOutcome
impl UnwindSafe for RegistrationOutcome
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