pub struct NamespaceInfo {
pub ecosystem: String,
pub package_name: String,
pub owner_did: String,
pub delegates: Vec<String>,
}Expand description
Namespace information returned by a lookup.
Args:
ecosystem: The namespace’s ecosystem.package_name: The namespace’s package name.owner_did: DID of the current owner.delegates: DIDs of identities with delegated authority.
Fields§
§ecosystem: StringThe namespace’s ecosystem.
package_name: StringThe namespace’s package name.
owner_did: StringDID of the current owner.
delegates: Vec<String>DIDs of identities with delegated authority.
Auto Trait Implementations§
impl Freeze for NamespaceInfo
impl RefUnwindSafe for NamespaceInfo
impl Send for NamespaceInfo
impl Sync for NamespaceInfo
impl Unpin for NamespaceInfo
impl UnsafeUnpin for NamespaceInfo
impl UnwindSafe for NamespaceInfo
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