pub enum RsaKeySize {
Bits2048,
Bits3072,
Bits4096,
}Expand description
Supported RSA key sizes
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RsaKeySize
impl Clone for RsaKeySize
Source§fn clone(&self) -> RsaKeySize
fn clone(&self) -> RsaKeySize
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 RsaKeySize
impl Debug for RsaKeySize
Source§impl Default for RsaKeySize
impl Default for RsaKeySize
Source§fn default() -> RsaKeySize
fn default() -> RsaKeySize
Returns the “default value” for a type. Read more
Source§impl PartialEq for RsaKeySize
impl PartialEq for RsaKeySize
impl Copy for RsaKeySize
impl Eq for RsaKeySize
impl StructuralPartialEq for RsaKeySize
Auto Trait Implementations§
impl Freeze for RsaKeySize
impl RefUnwindSafe for RsaKeySize
impl Send for RsaKeySize
impl Sync for RsaKeySize
impl Unpin for RsaKeySize
impl UnsafeUnpin for RsaKeySize
impl UnwindSafe for RsaKeySize
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