pub struct TransitKeyParams {
pub key_type: Option<String>,
pub derived: Option<bool>,
pub convergent_encryption: Option<bool>,
pub exportable: Option<bool>,
pub allow_plaintext_backup: Option<bool>,
pub auto_rotate_period: Option<String>,
pub key_size: Option<u32>,
}Fields§
§key_type: Option<String>§derived: Option<bool>§convergent_encryption: Option<bool>§exportable: Option<bool>§allow_plaintext_backup: Option<bool>§auto_rotate_period: Option<String>§key_size: Option<u32>Trait Implementations§
Source§impl Clone for TransitKeyParams
impl Clone for TransitKeyParams
Source§fn clone(&self) -> TransitKeyParams
fn clone(&self) -> TransitKeyParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransitKeyParams
impl Debug for TransitKeyParams
Source§impl Default for TransitKeyParams
impl Default for TransitKeyParams
Source§fn default() -> TransitKeyParams
fn default() -> TransitKeyParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TransitKeyParams
impl RefUnwindSafe for TransitKeyParams
impl Send for TransitKeyParams
impl Sync for TransitKeyParams
impl Unpin for TransitKeyParams
impl UnsafeUnpin for TransitKeyParams
impl UnwindSafe for TransitKeyParams
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