pub struct AuthResponse {
pub accessor: String,
pub config: AuthConfigResponse,
pub description: String,
pub external_entropy_access: bool,
pub local: bool,
pub options: Option<HashMap<String, String>>,
pub seal_wrap: bool,
pub mount_type: String,
pub uuid: String,
}
Expand description
Response from executing ListAuthsRequest
Fields§
§accessor: String
§config: AuthConfigResponse
§description: String
§external_entropy_access: bool
§local: bool
§options: Option<HashMap<String, String>>
§seal_wrap: bool
§mount_type: String
§uuid: String
Trait Implementations§
source§impl Debug for AuthResponse
impl Debug for AuthResponse
source§impl<'de> Deserialize<'de> for AuthResponse
impl<'de> Deserialize<'de> for AuthResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuthResponse
impl RefUnwindSafe for AuthResponse
impl Send for AuthResponse
impl Sync for AuthResponse
impl Unpin for AuthResponse
impl UnwindSafe for AuthResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more