pub struct NamespaceClaimResult {
pub ecosystem: String,
pub package_name: String,
pub owner_did: String,
pub log_sequence: u128,
}Expand description
Result of a successful namespace claim.
Args:
ecosystem: The claimed ecosystem.package_name: The claimed package name.owner_did: DID of the new owner.log_sequence: Sequence number assigned by the transparency log.
Fields§
§ecosystem: StringThe claimed ecosystem.
package_name: StringThe claimed package name.
owner_did: StringDID of the new owner.
log_sequence: u128Sequence number assigned by the transparency log.
Auto Trait Implementations§
impl Freeze for NamespaceClaimResult
impl RefUnwindSafe for NamespaceClaimResult
impl Send for NamespaceClaimResult
impl Sync for NamespaceClaimResult
impl Unpin for NamespaceClaimResult
impl UnsafeUnpin for NamespaceClaimResult
impl UnwindSafe for NamespaceClaimResult
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