[][src]Struct redjubjub::Signature

pub struct Signature<T: SigType> { /* fields omitted */ }

A RedJubJub signature.

Trait Implementations

impl<T: Clone + SigType> Clone for Signature<T>[src]

impl<T: Copy + SigType> Copy for Signature<T>[src]

impl<T: Debug + SigType> Debug for Signature<T>[src]

impl<'de, T: SigType> Deserialize<'de> for Signature<T>[src]

impl<T: Eq + SigType> Eq for Signature<T>[src]

impl<T: SigType> From<[u8; 64]> for Signature<T>[src]

impl<T: SigType> From<Signature<T>> for [u8; 64][src]

impl<T: PartialEq + SigType> PartialEq<Signature<T>> for Signature<T>[src]

impl<T: SigType> Serialize for Signature<T>[src]

impl<T: SigType> StructuralEq for Signature<T>[src]

impl<T: SigType> StructuralPartialEq for Signature<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Signature<T> where
    T: RefUnwindSafe

impl<T> Send for Signature<T> where
    T: Send

impl<T> Sync for Signature<T> where
    T: Sync

impl<T> Unpin for Signature<T> where
    T: Unpin

impl<T> UnwindSafe for Signature<T> where
    T: 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: 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.