[][src]Struct picky::http::http_signature::HttpSignatureBuilder

pub struct HttpSignatureBuilder<'a> { /* fields omitted */ }

Utility to generate HttpSignatures

Methods

impl<'a> HttpSignatureBuilder<'a>[src]

pub fn new() -> Self[src]

pub fn key_id<S: Into<String>>(&self, key_id: S) -> &Self[src]

Required

pub fn signature_method(
    &self,
    private_key: &'a PrivateKey,
    signature_type: SignatureHashType
) -> &Self
[src]

Required

pub fn created(&self, unix_timestamp: u64) -> &Self[src]

If generating signing string, at least one of created, expires, request_target or http_header is required otherwise DO NOT provide.

pub fn expires(&self, unix_timestamp: u64) -> &Self[src]

If generating signing string, at least one of created, expires, request_target or http_header is required otherwise DO NOT provide.

pub fn request_target(&self) -> &Self[src]

If generating signing string, at least one of created, expires, request_target or http_header is required otherwise DO NOT provide.

pub fn http_header<S: Into<String>>(&self, header: S) -> &Self[src]

If generating signing string, at least one of created, expires, request_target or http_header is required otherwise DO NOT provide.

pub fn generate_signing_string_using_http_request(
    &self,
    http_request: &'a dyn HttpRequest
) -> &Self
[src]

Required (alternative: pre_generated_signing_string).

pub fn pre_generated_signing_string(&self, signing_string: &'a str) -> &Self[src]

Required (alternative: generate_signing_string_using_http_request).

pub fn build(&self) -> Result<HttpSignature, HttpSignatureError>[src]

Trait Implementations

impl<'a> Clone for HttpSignatureBuilder<'a>[src]

impl<'a> Debug for HttpSignatureBuilder<'a>[src]

impl<'a> Default for HttpSignatureBuilder<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for HttpSignatureBuilder<'a>

impl<'a> !Send for HttpSignatureBuilder<'a>

impl<'a> !Sync for HttpSignatureBuilder<'a>

impl<'a> Unpin for HttpSignatureBuilder<'a>

impl<'a> !UnwindSafe for HttpSignatureBuilder<'a>

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,