pub struct KeyGen<'a> {
pub name: &'a str,
pub kind: KeyType,
pub size: i32,
}
Fields§
§name: &'a str
§kind: KeyType
§size: i32
Trait Implementations§
Source§impl<'a> ApiRequest for KeyGen<'a>
impl<'a> ApiRequest for KeyGen<'a>
Source§impl<'a> Serialize for KeyGen<'a>
impl<'a> Serialize for KeyGen<'a>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for KeyGen<'a>
impl<'a> RefUnwindSafe for KeyGen<'a>
impl<'a> Send for KeyGen<'a>
impl<'a> Sync for KeyGen<'a>
impl<'a> Unpin for KeyGen<'a>
impl<'a> UnwindSafe for KeyGen<'a>
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