#[repr(C)]pub struct SigActionData {
pub handler: u64,
pub flags: u64,
pub restorer: u64,
pub mask: u64,
}Fields§
§handler: u64§flags: u64§restorer: u64§mask: u64Implementations§
Source§impl SigActionData
impl SigActionData
Trait Implementations§
Source§impl Clone for SigActionData
impl Clone for SigActionData
Source§fn clone(&self) -> SigActionData
fn clone(&self) -> SigActionData
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 Debug for SigActionData
impl Debug for SigActionData
impl Copy for SigActionData
Auto Trait Implementations§
impl Freeze for SigActionData
impl RefUnwindSafe for SigActionData
impl Send for SigActionData
impl Sync for SigActionData
impl Unpin for SigActionData
impl UnsafeUnpin for SigActionData
impl UnwindSafe for SigActionData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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