1//! All error types for this crate. 2 3/// Attempted to convert an enum from a value but 4/// the value didn't map to any possible enum value. 5pub struct EnumValueOutOfRangeError<T>(pub T);