pub struct ResolvedParties {
pub issuer: Option<String>,
pub recipient: Option<String>,
}Expand description
The result of resolving a document’s in-band party identity against the transport context.
Per SPEC.md §4.8.1, these are the values a consumer applies for every subsequent framework rule that references the issuer or recipient.
Fields§
§issuer: Option<String>The party responsible for the document’s content, after precedence.
recipient: Option<String>The party expected to act upon the document, after precedence.
Trait Implementations§
Source§impl Clone for ResolvedParties
impl Clone for ResolvedParties
Source§fn clone(&self) -> ResolvedParties
fn clone(&self) -> ResolvedParties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResolvedParties
impl Debug for ResolvedParties
Source§impl Default for ResolvedParties
impl Default for ResolvedParties
Source§fn default() -> ResolvedParties
fn default() -> ResolvedParties
Returns the “default value” for a type. Read more
impl Eq for ResolvedParties
Source§impl PartialEq for ResolvedParties
impl PartialEq for ResolvedParties
impl StructuralPartialEq for ResolvedParties
Auto Trait Implementations§
impl Freeze for ResolvedParties
impl RefUnwindSafe for ResolvedParties
impl Send for ResolvedParties
impl Sync for ResolvedParties
impl Unpin for ResolvedParties
impl UnsafeUnpin for ResolvedParties
impl UnwindSafe for ResolvedParties
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.