#[non_exhaustive]pub struct AppRoleSecretIdResponse {
pub secret_id: SecretString,
pub secret_id_accessor: String,
pub secret_id_num_uses: u64,
pub secret_id_ttl: u64,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.secret_id: SecretString§secret_id_accessor: String§secret_id_num_uses: u64§secret_id_ttl: u64Trait Implementations§
Source§impl Clone for AppRoleSecretIdResponse
impl Clone for AppRoleSecretIdResponse
Source§impl Debug for AppRoleSecretIdResponse
impl Debug for AppRoleSecretIdResponse
Source§impl<'de> Deserialize<'de> for AppRoleSecretIdResponse
impl<'de> Deserialize<'de> for AppRoleSecretIdResponse
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
Source§impl Drop for AppRoleSecretIdResponse
impl Drop for AppRoleSecretIdResponse
Auto Trait Implementations§
impl Freeze for AppRoleSecretIdResponse
impl RefUnwindSafe for AppRoleSecretIdResponse
impl Send for AppRoleSecretIdResponse
impl Sync for AppRoleSecretIdResponse
impl Unpin for AppRoleSecretIdResponse
impl UnsafeUnpin for AppRoleSecretIdResponse
impl UnwindSafe for AppRoleSecretIdResponse
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