Crate thinwrap[][src]

Macros

auto_deref

auto_deref simply fills in Deref and DerefMut for any struct

thin_wrap

thin_wrap is a macro for creating a new struct that directly derefs into an inner struct.

Traits

Deref

Used for immutable dereferencing operations, like *v.

DerefMut

Used for mutable dereferencing operations, like in *v = 1;.