Struct epoll_event
#[repr(C, packed(1))]
pub struct epoll_event { pub events: u32, pub u64: u64 }
Fields
events: u32u64: u64
Trait Implementations
impl Clone for epoll_event
fn clone(&self) -> epoll_event
impl Copy for epoll_event
impl Debug for epoll_event
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for epoll_event
impl Hash for epoll_event
fn hash<H: Hasher>(&self, state: &mut H)
impl PartialEq for epoll_event
fn eq(&self, other: &epoll_event) -> bool
Auto Trait Implementations
impl Freeze for epoll_event
impl RefUnwindSafe for epoll_event
impl Send for epoll_event
impl Sync for epoll_event
impl Unpin for epoll_event
impl UnsafeUnpin for epoll_event
impl UnwindSafe for epoll_event
Blanket Implementations
impl<T> Any for epoll_event
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for epoll_event
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for epoll_event
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for epoll_event
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for epoll_event
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for epoll_event
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for epoll_event
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for epoll_event
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>