[][src]Struct node_sys::OsConstantsSignal

#[repr(transparent)]
pub struct OsConstantsSignal { /* fields omitted */ }

Methods

impl OsConstantsSignal[src]

pub fn SIGHUP(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGINT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGQUIT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGILL(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTRAP(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGABRT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGIOT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGBUS(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGFPE(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGKILL(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGUSR1(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGUSR2(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGSEGV(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGPIPE(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGALRM(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTERM(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGCHLD(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTKFLT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGCONT(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGSTOP(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTSTP(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGBREAK(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTTIN(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGTTOU(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGURG(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGXCPU(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGXFSZ(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGVTALRM(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGPROF(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGWINCH(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGIO(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGPOLL(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGLOST(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGPWR(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGINFO(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGSYS(&self) -> i32[src]

impl OsConstantsSignal[src]

pub fn SIGUNUSED(&self) -> i32[src]

Trait Implementations

impl AsRef<JsValue> for OsConstantsSignal[src]

impl AsRef<OsConstantsSignal> for OsConstantsSignal[src]

impl Deref for OsConstantsSignal[src]

type Target = JsValue

The resulting type after dereferencing.

impl From<JsValue> for OsConstantsSignal[src]

impl From<OsConstantsSignal> for JsValue[src]

impl FromWasmAbi for OsConstantsSignal[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for OsConstantsSignal[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a OsConstantsSignal[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for OsConstantsSignal[src]

impl OptionFromWasmAbi for OsConstantsSignal[src]

impl OptionIntoWasmAbi for OsConstantsSignal[src]

impl<'a> OptionIntoWasmAbi for &'a OsConstantsSignal[src]

impl RefFromWasmAbi for OsConstantsSignal[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<OsConstantsSignal>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl WasmDescribe for OsConstantsSignal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.