[][src]Struct overlord::types::AggregatedSignature

pub struct AggregatedSignature {
    pub signature: Signature,
    pub address_bitmap: Bytes,
}

An aggregate signature.

Fields

signature: Signature

Aggregated signature.

address_bitmap: Bytes

Voter address bit map.

Trait Implementations

impl Clone for AggregatedSignature[src]

impl Debug for AggregatedSignature[src]

impl Decodable for AggregatedSignature[src]

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

impl Encodable for AggregatedSignature[src]

impl Eq for AggregatedSignature[src]

impl Hash for AggregatedSignature[src]

impl PartialEq<AggregatedSignature> for AggregatedSignature[src]

impl Serialize for AggregatedSignature[src]

impl StructuralEq for AggregatedSignature[src]

impl StructuralPartialEq for AggregatedSignature[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> Cloneable for T where
    T: 'static + Send + Sync + Debug + DynClone
[src]

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

impl<T> DynClone for T where
    T: Clone
[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.