Struct cloudfront_sign::SignedOptions[][src]

pub struct SignedOptions {
    pub key_pair_id: String,
    pub private_key: String,
    pub date_less_than: u64,
    pub date_greater_than: Option<u64>,
    pub ip_address: Option<String>,
}

Options for getting a signed cookie from CloudFront

Fields

key_pair_id: Stringprivate_key: Stringdate_less_than: u64date_greater_than: Option<u64>ip_address: Option<String>

Trait Implementations

impl Default for SignedOptions[src]

Auto Trait Implementations

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, 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.