#[repr(C)]pub struct blowfish_context {
pub P: [u32; 18],
pub S: [[u32; 256]; 4],
}Fields§
§P: [u32; 18]§S: [[u32; 256]; 4]Trait Implementations§
Source§impl Clone for blowfish_context
impl Clone for blowfish_context
Source§fn clone(&self) -> blowfish_context
fn clone(&self) -> blowfish_context
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 Default for blowfish_context
impl Default for blowfish_context
impl Copy for blowfish_context
Auto Trait Implementations§
impl Freeze for blowfish_context
impl RefUnwindSafe for blowfish_context
impl Send for blowfish_context
impl Sync for blowfish_context
impl Unpin for blowfish_context
impl UnwindSafe for blowfish_context
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