pub trait IntoTimestampSigner {
    type TimestampSigner: TimestampSigner;
    fn into_timestamp_signer(self) -> Self::TimestampSigner;
}

Associated Types

Required methods

Converts this Signer into a TimestampSigner, giving it the ability to do signing with timestamps!

Implementors