#[repr(C)]pub struct arc4_context {
pub x: c_int,
pub y: c_int,
pub m: [c_uchar; 256],
}Fields§
§x: c_int§y: c_int§m: [c_uchar; 256]Trait Implementations§
Source§impl Clone for arc4_context
impl Clone for arc4_context
Source§fn clone(&self) -> arc4_context
fn clone(&self) -> arc4_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 arc4_context
impl Default for arc4_context
impl Copy for arc4_context
Auto Trait Implementations§
impl Freeze for arc4_context
impl RefUnwindSafe for arc4_context
impl Send for arc4_context
impl Sync for arc4_context
impl Unpin for arc4_context
impl UnwindSafe for arc4_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