Crate mixed_ref

Source
Expand description

Mixed references to owned and borrowed memory.

§Usage

This crate is available on crates.io and can be used by adding the following to your project’s Cargo.toml:

[dependencies]
mixed_ref = "0.1.1"

and this to your crate root:

#[macro_use]
extern crate mixed_ref;

Enums§

MixedRef
A reference to either owned or borrowed data.
MixedRefMut
A reference to either owned or mutably borrowed data.