pub struct GetConfigurationOfTheSecretEngineResponse {
pub accessor: String,
pub config: MountConfigResponse,
pub description: String,
pub external_entropy_access: bool,
pub local: bool,
pub options: Option<HashMap<String, String>>,
pub plugin_version: Option<String>,
pub running_plugin_version: Option<String>,
pub running_sha256: Option<String>,
pub seal_wrap: bool,
pub mount_type: String,
pub uuid: String,
}
Expand description
Response from executing GetConfigurationOfTheSecretEngineRequest
Fields§
§accessor: String
§config: MountConfigResponse
§description: String
§external_entropy_access: bool
§local: bool
§options: Option<HashMap<String, String>>
§plugin_version: Option<String>
§running_plugin_version: Option<String>
§running_sha256: Option<String>
§seal_wrap: bool
§mount_type: String
§uuid: String
Trait Implementations§
source§impl<'de> Deserialize<'de> for GetConfigurationOfTheSecretEngineResponse
impl<'de> Deserialize<'de> for GetConfigurationOfTheSecretEngineResponse
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 GetConfigurationOfTheSecretEngineResponse
impl RefUnwindSafe for GetConfigurationOfTheSecretEngineResponse
impl Send for GetConfigurationOfTheSecretEngineResponse
impl Sync for GetConfigurationOfTheSecretEngineResponse
impl Unpin for GetConfigurationOfTheSecretEngineResponse
impl UnwindSafe for GetConfigurationOfTheSecretEngineResponse
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