Trait flow_sdk::algorithms::Signature[][src]

pub trait Signature {
    type Serialized: AsRef<[u8]> + Clone;
    fn serialize(&self) -> Self::Serialized;
}
Expand description

A signature.

Associated Types

Serialized form of the signature

Required methods

Serializes the signature.

Implementors