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]

[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.

[src]

Returns the flags set on the action.

[src]

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

[src]

Returns the action's handler.

Trait Implementations

impl Clone for SigAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SigAction
[src]

Auto Trait Implementations

impl Send for SigAction

impl Sync for SigAction