Crate unstorable[][src]

Expand description

Unstorable

This crate provides a type that is meant to be used with config that can be updated. The Unstorable type is meant to only be referenced on the stack and made very hard to store in any struct or on the heap. It is an unnamed type which makes it impossible to declare as part of a struct without generics.

Traits

AsUnstorable

A trait with a blanket implementation for all types that allows references to them to be made into an unstorable type.

Unstorable

Represents the types that can be returned by the AsUnstorable trait.