[][src]Struct vault_rs::ResponseData

pub struct ResponseData {
    pub request_id: String,
    pub lease_id: String,
    pub renewable: bool,
    pub lease_duration: u64,
    pub warnings: Option<Vec<String>>,
    pub auth: Option<Authentication>,
    pub data: Option<Value>,
}

Vault Generic Response Data

Fields

request_id: String

Request UUID

lease_id: String

Lease ID for secrets

renewable: bool

Renewable for secrets

lease_duration: u64

Lease duration for secrets

warnings: Option<Vec<String>>

Warnings, if any

auth: Option<Authentication>

Auth data for authentication requests

data: Option<Value>

Data for secrets requests

Trait Implementations

impl Clone for ResponseData[src]

impl Debug for ResponseData[src]

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

impl PartialEq<ResponseData> for ResponseData[src]

impl Serialize for ResponseData[src]

impl StructuralPartialEq for ResponseData[src]

Auto Trait Implementations

impl RefUnwindSafe for ResponseData

impl Send for ResponseData

impl Sync for ResponseData

impl Unpin for ResponseData

impl UnwindSafe for ResponseData

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<T> From<T> for T[src]

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

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.