#[repr(C)]struct SigActionRaw {
sa_handler: u64,
sa_flags: u64,
sa_restorer: u64,
sa_mask: u64,
}Expand description
Raw representation of struct sigaction for userspace
Fields§
§sa_handler: u64§sa_flags: u64§sa_restorer: u64§sa_mask: u64Implementations§
Source§impl SigActionRaw
impl SigActionRaw
Auto Trait Implementations§
impl Freeze for SigActionRaw
impl RefUnwindSafe for SigActionRaw
impl Send for SigActionRaw
impl Sync for SigActionRaw
impl Unpin for SigActionRaw
impl UnsafeUnpin for SigActionRaw
impl UnwindSafe for SigActionRaw
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more