[][src]Struct parsec::Proof

pub struct Proof<P: PublicId> { /* fields omitted */ }

A basic helper to carry a given Signature along with the signer's PublicId.

Implementations

impl<P: PublicId> Proof<P>[src]

pub fn public_id(&self) -> &P[src]

Returns the associated public identity.

pub fn signature(&self) -> &P::Signature[src]

Returns the associated signature.

pub fn is_valid(&self, data: &[u8]) -> bool[src]

Verifies this Proof against data. Returns true if valid.

Trait Implementations

impl<P: Clone + PublicId> Clone for Proof<P> where
    P::Signature: Clone
[src]

impl<P: Debug + PublicId> Debug for Proof<P> where
    P::Signature: Debug
[src]

impl<'de, P: PublicId> Deserialize<'de> for Proof<P>[src]

impl<P: Eq + PublicId> Eq for Proof<P> where
    P::Signature: Eq
[src]

impl<P: Hash + PublicId> Hash for Proof<P> where
    P::Signature: Hash
[src]

impl<P: Ord + PublicId> Ord for Proof<P> where
    P::Signature: Ord
[src]

impl<P: PartialEq + PublicId> PartialEq<Proof<P>> for Proof<P> where
    P::Signature: PartialEq
[src]

impl<P: PartialOrd + PublicId> PartialOrd<Proof<P>> for Proof<P> where
    P::Signature: PartialOrd
[src]

impl<P: PublicId> Serialize for Proof<P>[src]

impl<P: PublicId> StructuralEq for Proof<P>[src]

impl<P: PublicId> StructuralPartialEq for Proof<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for Proof<P> where
    P: RefUnwindSafe,
    <P as PublicId>::Signature: RefUnwindSafe

impl<P> Send for Proof<P> where
    P: Send,
    <P as PublicId>::Signature: Send

impl<P> Sync for Proof<P> where
    P: Sync,
    <P as PublicId>::Signature: Sync

impl<P> Unpin for Proof<P> where
    P: Unpin,
    <P as PublicId>::Signature: Unpin

impl<P> UnwindSafe for Proof<P> where
    P: UnwindSafe,
    <P as PublicId>::Signature: UnwindSafe

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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,