Struct nix::sys::signal::SigAction[][src]

pub struct SigAction { /* fields omitted */ }

Action to take on receipt of a signal. Corresponds to sigaction.

Methods

impl SigAction
[src]

Creates a new action.

The SA_SIGINFO bit in the flags argument is ignored (it will be set only if handler is the SigAction variant). mask specifies other signals to block during execution of the signal-catching function.

Returns the flags set on the action.

Returns the set of signals that are blocked during execution of the action's signal-catching function.

Returns the action's handler.

Trait Implementations

impl Clone for SigAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SigAction
[src]

Auto Trait Implementations

impl Send for SigAction

impl Sync for SigAction