Expand description
Contains the traits TryAsRef, TryAsMut and TypedContainer, used by the crate try_as to simplfy dealing with enums enumerating types.
See the the crate documentation for more information and documentation on how to use the traits.
Traitsยง
- TryAs
Mut - A version of
AsMut<T>that can fail. - TryAs
Ref - A version of
AsRef<T>that can fail. - Typed
Container - A trait for types that can hold values of different types.