[][src]Struct casper_node::tls::Signed

pub struct Signed<V> { /* fields omitted */ }

A signed value.

Combines a value V with a Signature and a signature scheme. The signature scheme involves serializing the value to bytes and signing the result.

Trait Implementations

impl<V: Clone> Clone for Signed<V>[src]

impl<V: Debug> Debug for Signed<V>[src]

impl<'de, V> Deserialize<'de> for Signed<V>[src]

impl<T> Display for Signed<T> where
    T: Display + for<'de> Deserialize<'de>, 
[src]

impl<V: Eq> Eq for Signed<V>[src]

impl<V: Hash> Hash for Signed<V>[src]

impl<V: PartialEq> PartialEq<Signed<V>> for Signed<V>[src]

impl<V> Serialize for Signed<V>[src]

impl<V> StructuralEq for Signed<V>[src]

impl<V> StructuralPartialEq for Signed<V>[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for Signed<V> where
    V: RefUnwindSafe
[src]

impl<V> Send for Signed<V> where
    V: Send
[src]

impl<V> Sync for Signed<V> where
    V: Sync
[src]

impl<V> Unpin for Signed<V> where
    V: Unpin
[src]

impl<V> UnwindSafe for Signed<V> where
    V: UnwindSafe
[src]

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> CallHasher for T where
    T: Hash

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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> Serialize for T where
    T: Serialize + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

impl<T> WithSubscriber for T[src]