pub struct ManageCreateRequest {
pub key_type: String,
pub bit_length: Option<u32>,
pub description: Option<String>,
pub load_to_ram: bool,
pub confirm: Option<bool>,
pub notification: Option<bool>,
pub lifetime_seconds: Option<u32>,
}Expand description
Request for manage.create operation
Fields§
§key_type: String§bit_length: Option<u32>§description: Option<String>§load_to_ram: bool§confirm: Option<bool>§notification: Option<bool>§lifetime_seconds: Option<u32>Trait Implementations§
Source§impl Clone for ManageCreateRequest
impl Clone for ManageCreateRequest
Source§fn clone(&self) -> ManageCreateRequest
fn clone(&self) -> ManageCreateRequest
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 ManageCreateRequest
impl Debug for ManageCreateRequest
Source§impl<'de> Deserialize<'de> for ManageCreateRequest
impl<'de> Deserialize<'de> for ManageCreateRequest
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 ManageCreateRequest
impl RefUnwindSafe for ManageCreateRequest
impl Send for ManageCreateRequest
impl Sync for ManageCreateRequest
impl Unpin for ManageCreateRequest
impl UnsafeUnpin for ManageCreateRequest
impl UnwindSafe for ManageCreateRequest
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