Trait SignerT

Source
pub trait SignerT {
    type Error;

    // Required method
    fn build_signed(self, query: Query<'_>) -> Result<String, Self::Error>;
}
Expand description

Helper trait for query string signing.

Required Associated Types§

Source

type Error

The error type.

Required Methods§

Source

fn build_signed(self, query: Query<'_>) -> Result<String, Self::Error>

Sign the query string and return the final query string.

Implementors§