odem-rs-core 0.3.0

Core components of the odem-rs simulation framework
Documentation
1
2
3
4
5
6
7
8
//! Module containing a type of reference-counting smart-pointer that works in
//! `no_std`-environments and for stack-bound values.

mod irc;
mod lease;

pub use irc::{AsIrc, IntrusivelyCounted, Irc, IrcBox, IrcBoxed, Private};
pub use lease::{Lease, LeasedMut, LeasedRef};