pub struct MetadataPackage {
pub token: String,
pub public_key: PublicKey,
pub metadata: AddressMetadata,
pub raw_auth_wrapper: Bytes,
}
Expand description
The AddressMetadata
paired with its PublicKey
, the raw AuthWrapper
and a POP token
.
Fields§
§token: String
POP token
attached to the response.
public_key: PublicKey
Public key of the metadata.
metadata: AddressMetadata
The address metadata.
raw_auth_wrapper: Bytes
The raw AuthWrapper
Trait Implementations§
Source§impl Clone for MetadataPackage
impl Clone for MetadataPackage
Source§fn clone(&self) -> MetadataPackage
fn clone(&self) -> MetadataPackage
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 MetadataPackage
impl RefUnwindSafe for MetadataPackage
impl Send for MetadataPackage
impl Sync for MetadataPackage
impl Unpin for MetadataPackage
impl UnwindSafe for MetadataPackage
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