#[repr(transparent)]pub struct C4EncryptionAlgorithm(pub u32);Tuple Fields
0: u32Implementations
sourceimpl C4EncryptionAlgorithm
impl C4EncryptionAlgorithm
pub const kC4EncryptionNone: C4EncryptionAlgorithm = C4EncryptionAlgorithm(0)
sourceimpl C4EncryptionAlgorithm
impl C4EncryptionAlgorithm
pub const kC4EncryptionAES256: C4EncryptionAlgorithm = C4EncryptionAlgorithm(1)
Trait Implementations
sourceimpl Clone for C4EncryptionAlgorithm
impl Clone for C4EncryptionAlgorithm
sourcefn clone(&self) -> C4EncryptionAlgorithm
fn clone(&self) -> C4EncryptionAlgorithm
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for C4EncryptionAlgorithm
impl Debug for C4EncryptionAlgorithm
sourceimpl Hash for C4EncryptionAlgorithm
impl Hash for C4EncryptionAlgorithm
sourceimpl PartialEq<C4EncryptionAlgorithm> for C4EncryptionAlgorithm
impl PartialEq<C4EncryptionAlgorithm> for C4EncryptionAlgorithm
sourcefn eq(&self, other: &C4EncryptionAlgorithm) -> bool
fn eq(&self, other: &C4EncryptionAlgorithm) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &C4EncryptionAlgorithm) -> bool
fn ne(&self, other: &C4EncryptionAlgorithm) -> bool
This method tests for !=.
impl Copy for C4EncryptionAlgorithm
impl Eq for C4EncryptionAlgorithm
impl StructuralEq for C4EncryptionAlgorithm
impl StructuralPartialEq for C4EncryptionAlgorithm
Auto Trait Implementations
impl RefUnwindSafe for C4EncryptionAlgorithm
impl Send for C4EncryptionAlgorithm
impl Sync for C4EncryptionAlgorithm
impl Unpin for C4EncryptionAlgorithm
impl UnwindSafe for C4EncryptionAlgorithm
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more