pub trait SignerT { type Error; // Required method fn build_signed(self, query: Query<'_>) -> Result<String, Self::Error>; }
Helper trait for query string signing.
The error type.
Sign the query string and return the final query string.