#[repr(C)]
pub union auxv_union {
pub a_val: usize,
pub a_ptr: *mut (),
}Expand description
A union inside auxv.
Fields§
§a_val: usize§a_ptr: *mut ()Trait Implementations§
Source§impl Clone for auxv_union
impl Clone for auxv_union
Source§fn clone(&self) -> auxv_union
fn clone(&self) -> auxv_union
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 moreimpl Copy for auxv_union
Auto Trait Implementations§
impl Freeze for auxv_union
impl RefUnwindSafe for auxv_union
impl !Send for auxv_union
impl !Sync for auxv_union
impl Unpin for auxv_union
impl UnwindSafe for auxv_union
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