TuplePreparable

Trait TuplePreparable 

Source
pub trait TuplePreparable: Sized {
    // Required method
    fn prepare_into_concatenated_digest(
        decoder: &mut TransactionDecoder<'_>,
        accumulator: HashAccumulator,
        header: ExpectedTupleHeader,
    ) -> Result<(Self, Summary), PrepareError>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TuplePreparable for ()

Source§

impl<T0> TuplePreparable for (T0,)

Source§

impl<T0, T1> TuplePreparable for (T0, T1)

Source§

impl<T0, T1, T2> TuplePreparable for (T0, T1, T2)

Source§

impl<T0, T1, T2, T3> TuplePreparable for (T0, T1, T2, T3)

Source§

impl<T0, T1, T2, T3, T4> TuplePreparable for (T0, T1, T2, T3, T4)

Source§

impl<T0, T1, T2, T3, T4, T5> TuplePreparable for (T0, T1, T2, T3, T4, T5)

Implementors§