pub struct CipherState {
pub k: Option<[u8; 32]>,
pub n: u64,
}Fields§
§k: Option<[u8; 32]>§n: u64Implementations§
Trait Implementations§
Source§impl Clone for CipherState
impl Clone for CipherState
Source§fn clone(&self) -> CipherState
fn clone(&self) -> CipherState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CipherState
impl RefUnwindSafe for CipherState
impl Send for CipherState
impl Sync for CipherState
impl Unpin for CipherState
impl UnsafeUnpin for CipherState
impl UnwindSafe for CipherState
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