[][src]Struct parsec::Vote

pub struct Vote<T: NetworkEvent, P: PublicId> { /* fields omitted */ }

A helper struct carrying an Observation and a signature of this Observation.

Implementations

impl<T: NetworkEvent, P: PublicId> Vote<T, P>[src]

pub fn new<S: SecretId<PublicId = P>>(
    secret_id: &S,
    payload: Observation<T, P>
) -> Self
[src]

Creates a Vote for payload.

pub fn payload(&self) -> &Observation<T, P>[src]

Returns the payload being voted for.

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

Returns the signature of this Vote's payload.

pub fn is_valid(&self, public_id: &P) -> bool[src]

Validates this Vote's signature and payload against the given public ID.

pub fn create_proof(&self, public_id: &P) -> Result<Proof<P>, Error>[src]

Creates a Proof from this Vote. Returns Err if this Vote is not valid (i.e. if !self.is_valid()).

Trait Implementations

impl<T: Clone + NetworkEvent, P: Clone + PublicId> Clone for Vote<T, P> where
    P::Signature: Clone
[src]

impl<T: NetworkEvent, P: PublicId> Debug for Vote<T, P>[src]

impl<'de, T: NetworkEvent, P: PublicId> Deserialize<'de> for Vote<T, P> where
    T: DeserializeOwned
[src]

impl<T: Eq + NetworkEvent, P: Eq + PublicId> Eq for Vote<T, P> where
    P::Signature: Eq
[src]

impl<T: Hash + NetworkEvent, P: Hash + PublicId> Hash for Vote<T, P> where
    P::Signature: Hash
[src]

impl<T: Ord + NetworkEvent, P: Ord + PublicId> Ord for Vote<T, P> where
    P::Signature: Ord
[src]

impl<T: PartialEq + NetworkEvent, P: PartialEq + PublicId> PartialEq<Vote<T, P>> for Vote<T, P> where
    P::Signature: PartialEq
[src]

impl<T: PartialOrd + NetworkEvent, P: PartialOrd + PublicId> PartialOrd<Vote<T, P>> for Vote<T, P> where
    P::Signature: PartialOrd
[src]

impl<T: NetworkEvent, P: PublicId> Serialize for Vote<T, P> where
    T: Serialize,
    P: Serialize,
    P::Signature: Serialize
[src]

impl<T: NetworkEvent, P: PublicId> StructuralEq for Vote<T, P>[src]

impl<T: NetworkEvent, P: PublicId> StructuralPartialEq for Vote<T, P>[src]

Auto Trait Implementations

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

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

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

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

impl<T, P> UnwindSafe for Vote<T, P> where
    P: RefUnwindSafe + UnwindSafe,
    T: 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>,