#[repr(C)]pub enum crypt_status_info {
CRYPT_INVALID = 0,
CRYPT_INACTIVE = 1,
CRYPT_ACTIVE = 2,
CRYPT_BUSY = 3,
}
Variants§
Trait Implementations§
Source§impl Clone for crypt_status_info
impl Clone for crypt_status_info
Source§fn clone(&self) -> crypt_status_info
fn clone(&self) -> crypt_status_info
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 crypt_status_info
impl Debug for crypt_status_info
Source§impl PartialEq for crypt_status_info
impl PartialEq for crypt_status_info
impl Copy for crypt_status_info
impl Eq for crypt_status_info
impl StructuralPartialEq for crypt_status_info
Auto Trait Implementations§
impl Freeze for crypt_status_info
impl RefUnwindSafe for crypt_status_info
impl Send for crypt_status_info
impl Sync for crypt_status_info
impl Unpin for crypt_status_info
impl UnwindSafe for crypt_status_info
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more