#[repr(u32)]pub enum themis_key_kind {
THEMIS_KEY_INVALID = 0,
THEMIS_KEY_RSA_PRIVATE = 1,
THEMIS_KEY_RSA_PUBLIC = 2,
THEMIS_KEY_EC_PRIVATE = 3,
THEMIS_KEY_EC_PUBLIC = 4,
}Variants§
THEMIS_KEY_INVALID = 0
THEMIS_KEY_RSA_PRIVATE = 1
THEMIS_KEY_RSA_PUBLIC = 2
THEMIS_KEY_EC_PRIVATE = 3
THEMIS_KEY_EC_PUBLIC = 4
Trait Implementations§
Source§impl Clone for themis_key_kind
impl Clone for themis_key_kind
Source§fn clone(&self) -> themis_key_kind
fn clone(&self) -> themis_key_kind
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 themis_key_kind
impl Debug for themis_key_kind
Source§impl Hash for themis_key_kind
impl Hash for themis_key_kind
Source§impl PartialEq for themis_key_kind
impl PartialEq for themis_key_kind
impl Copy for themis_key_kind
impl Eq for themis_key_kind
impl StructuralPartialEq for themis_key_kind
Auto Trait Implementations§
impl Freeze for themis_key_kind
impl RefUnwindSafe for themis_key_kind
impl Send for themis_key_kind
impl Sync for themis_key_kind
impl Unpin for themis_key_kind
impl UnwindSafe for themis_key_kind
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