pub struct ResolutionOutput {
pub context: Context,
pub did_document: Option<Document>,
pub did_resolution_metadata: Option<DIDResolutionMetadata>,
pub did_document_metadata: Option<DIDDocumentMetadata>,
pub additional_properties: Option<HashMap<String, Value>>,
}Expand description
DID Resolution Output.
See <https://www.w3.org/TR/did-core/#did-resolution>
Fields§
§context: Context§did_document: Option<Document>§did_resolution_metadata: Option<DIDResolutionMetadata>§did_document_metadata: Option<DIDDocumentMetadata>§additional_properties: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for ResolutionOutput
impl Clone for ResolutionOutput
Source§fn clone(&self) -> ResolutionOutput
fn clone(&self) -> ResolutionOutput
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 moreSource§impl Debug for ResolutionOutput
impl Debug for ResolutionOutput
Source§impl<'de> Deserialize<'de> for ResolutionOutput
impl<'de> Deserialize<'de> for ResolutionOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResolutionOutput
impl RefUnwindSafe for ResolutionOutput
impl Send for ResolutionOutput
impl Sync for ResolutionOutput
impl Unpin for ResolutionOutput
impl UnwindSafe for ResolutionOutput
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