Crate pbx

Source

Macros§

arc
arcmut
arcmut_with
default
construct me one default, please!
pbx
rc
rcmut
zeroed
we typically use this when interactinge with wrappers around C apis which do not have/need default constructors

Structs§

Arc
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
Mutex
A mutual exclusion primitive useful for protecting shared data
Pin
A pointer which pins its pointee in place.
Rc
A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.
RefCell
A mutable memory location with dynamically checked borrow rules

Functions§

pin_arc
Converts an Arc to a Pin<Arc>
pin_box
Converts a Box to a Pin<Box>

Type Aliases§

Pbx