Struct arpd_request

#[repr(C)]
pub struct arpd_request { pub req: c_ushort, pub ip: u32, pub dev: c_ulong, pub stamp: c_ulong, pub updated: c_ulong, pub ha: [c_uchar; 7] }

Fields

req: c_ushort
ip: u32
dev: c_ulong
stamp: c_ulong
updated: c_ulong
ha: [c_uchar; 7]

Trait Implementations

impl Clone for arpd_request

fn clone(&self) -> arpd_request

impl Copy for arpd_request

impl Debug for arpd_request

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for arpd_request

impl Hash for arpd_request

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for arpd_request

fn eq(&self, other: &arpd_request) -> bool

impl StructuralPartialEq for arpd_request

Auto Trait Implementations

impl Freeze for arpd_request

impl RefUnwindSafe for arpd_request

impl Send for arpd_request

impl Sync for arpd_request

impl Unpin for arpd_request

impl UnsafeUnpin for arpd_request

impl UnwindSafe for arpd_request

Blanket Implementations

impl<T> Any for arpd_request where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for arpd_request where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for arpd_request where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for arpd_request where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for arpd_request

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for arpd_request where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for arpd_request where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for arpd_request where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>