[][src]Struct indy_data_types::anoncreds::presentation::RequestedProof

pub struct RequestedProof {
    pub revealed_attrs: HashMap<String, RevealedAttributeInfo>,
    pub revealed_attr_groups: HashMap<String, RevealedAttributeGroupInfo>,
    pub self_attested_attrs: HashMap<String, String>,
    pub unrevealed_attrs: HashMap<String, SubProofReferent>,
    pub predicates: HashMap<String, SubProofReferent>,
}

Fields

revealed_attrs: HashMap<String, RevealedAttributeInfo>revealed_attr_groups: HashMap<String, RevealedAttributeGroupInfo>self_attested_attrs: HashMap<String, String>unrevealed_attrs: HashMap<String, SubProofReferent>predicates: HashMap<String, SubProofReferent>

Trait Implementations

impl Clone for RequestedProof[src]

impl Debug for RequestedProof[src]

impl Default for RequestedProof[src]

impl<'de> Deserialize<'de> for RequestedProof[src]

impl Eq for RequestedProof[src]

impl PartialEq<RequestedProof> for RequestedProof[src]

impl Serialize for RequestedProof[src]

impl StructuralEq for RequestedProof[src]

impl StructuralPartialEq for RequestedProof[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.