Struct linux_api::signal::sigaction

source ·
#[repr(C)]
pub struct sigaction(/* private fields */);
Expand description

§Invariants

sigaction does not require or guarantee that its internal function pointers, if any, are safe to call/dereference.

Implementations§

source§

impl sigaction

source

pub fn new_raw( handler: SignalHandler, flags: SigActionFlags, mask: sigset_t, restorer: Option<unsafe extern "C" fn()> ) -> Self

Consider sigaction::new_with_default_restorer instead, which takes care of setting up a restorer.

panics if handler is inconsistent with the presence or absence of the SA_SIGINFO flag.

source

pub fn new_with_default_restorer( handler: SignalHandler, flags: SigActionFlags, mask: sigset_t ) -> Self

Creates a sigaction with SA_RESTORER set, and the internal restorer field set to sigaction_restorer. The libc sigaction function normally makes these changes to the provided struct sigaction.

source

pub fn wrap(si: linux_sigaction) -> Self

source

pub fn wrap_ref(si: &linux_sigaction) -> &Self

source

pub fn wrap_mut(si: &mut linux_sigaction) -> &mut Self

source

pub unsafe fn peel(si: Self) -> linux_sigaction

§Safety

lsa_handler is safe to dereference iff the lsa_handler used to construct Self is.

source

pub fn flags(&self) -> Option<SigActionFlags>

source

pub fn flags_retain(&self) -> SigActionFlags

source

pub fn mask(&self) -> sigset_t

source

pub unsafe fn handler(&self) -> SignalHandler

§Safety

The functions in SignalHandler::Action or SignalHandler::Handler are safe to call iff the function pointer in the internal lsa_handler is, and is of the type specified in the internal lsa_flags.

source

pub fn is_ignore(&self) -> bool

source

pub fn is_default(&self) -> bool

Trait Implementations§

source§

impl Clone for sigaction

source§

fn clone(&self) -> sigaction

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for sigaction

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for sigaction

source§

impl Pod for sigaction

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.