[go: up one dir, main page]

stdweb 0.4.8

A standard library for the client-side Web
Documentation
#[macro_use]
pub mod macros;
pub mod initialization;
pub mod value;
pub mod number;
pub mod serialization;
pub mod ffi;
pub mod callfn;
pub mod newtype;
pub mod try_from;
pub mod object;
pub mod array;
pub mod symbol;
pub mod type_name;
pub mod unsafe_typed_array;
pub mod once;
pub mod instance_of;
pub mod reference_type;
pub mod promise;
pub mod discard;

#[cfg(feature = "futures-support")]
pub mod promise_future;

#[cfg(feature = "futures-support")]
pub mod executor;

#[cfg(feature = "nightly")]
pub mod void {
    pub type Void = !;
}

#[cfg(not(feature = "nightly"))]
pub mod void;