Safe and unsafe cells implementing Send/Sync
Immutable memory region with runtime Send checking
Provides wrapper types for sending non-send values to other threads.
Safe, Send + Sync access to !Send/!Sync data by isolating it on a dedicated thread and interacting with it through message passing. Perfect for Rc, RefCell, and other single-threaded types.
CKB RPC server
`RefMutex<T>` that is similar to `Mutex<T>` but is `Sync` and `Send` even if `T` isn't `Send`.
Safe Rust bindings for the BrlAPI library
Low-level FFI bindings for the BrlAPI library
Safe, idiomatic Rust bindings for BrlAPI (BRLTTY's braille display API)
Safe, idiomatic Rust bindings for BrlAPI (BRLTTY's braille display API)
Determine if a type implements a logical trait expression.
A RESTful Minesweeper server.