movable-ref 0.2.0

A tool for building movable self-referential types
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Pointer module - Core relative pointer functionality
//!
//! This module contains the main `SelfRef` type and all operations
//! related to relative pointer manipulation.

mod operations;
mod self_ref;
/// Module for handling unreachable code
pub mod unreachable;

pub use self_ref::SelfRef;