#[repr(C)]pub struct rc4_key_st {
pub x: u32,
pub y: u32,
pub data: [u32; 256],
}
Fields§
§x: u32
§y: u32
§data: [u32; 256]
Trait Implementations§
Source§impl Clone for rc4_key_st
impl Clone for rc4_key_st
Source§fn clone(&self) -> rc4_key_st
fn clone(&self) -> rc4_key_st
Returns a copy 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 rc4_key_st
impl Debug for rc4_key_st
Source§impl Default for rc4_key_st
impl Default for rc4_key_st
Source§impl PartialEq for rc4_key_st
impl PartialEq for rc4_key_st
impl Copy for rc4_key_st
impl Eq for rc4_key_st
impl StructuralPartialEq for rc4_key_st
Auto Trait Implementations§
impl Freeze for rc4_key_st
impl RefUnwindSafe for rc4_key_st
impl Send for rc4_key_st
impl Sync for rc4_key_st
impl Unpin for rc4_key_st
impl UnwindSafe for rc4_key_st
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