[][src]Struct vault_rs::secrets::aws::Lease

pub struct Lease {
    pub lease: String,
    pub lease_max: String,
}

Parameters for configuring the lease for the AWS Secrets Engine

Fields

lease: String

Specifies the lease value provided as a string duration with time suffix. "h" (hour) is the largest suffix.

lease_max: String

Specifies the maximum lease value provided as a string duration with time suffix. "h" (hour) is the largest suffix.

Trait Implementations

impl Debug for Lease[src]

impl<'de> Deserialize<'de> for Lease[src]

impl Eq for Lease[src]

impl PartialEq<Lease> for Lease[src]

impl Serialize for Lease[src]

impl StructuralEq for Lease[src]

impl StructuralPartialEq for Lease[src]

Auto Trait Implementations

impl RefUnwindSafe for Lease

impl Send for Lease

impl Sync for Lease

impl Unpin for Lease

impl UnwindSafe for Lease

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.