[][src]Struct http_signature_normalization_http::create::Unsigned

pub struct Unsigned {
    pub unsigned: Unsigned,
}

A thin wrapper around the base library's Unsigned type

This is used to produce a Signed type that can interact with http's types

Fields

unsigned: Unsigned

The inner Unsigned type, which can produce the base library's Signed type

Methods

impl Unsigned[src]

pub fn sign<F, E>(self, key_id: String, f: F) -> Result<Signed, E> where
    F: FnOnce(&str) -> Result<String, E>, 
[src]

Sign the request

This example is not tested
let signed = unsigned.sign("my-key-id".to_owned(), |signing_string| {
    let signature = private_key.sign(signing_string)?;
    Ok(base64::encode(signature))
})?;

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]