//! Error types for the non-empty types.
/// Errors that can occur when working with non-empty types..
#[derive(Debug)]pubenumNonEmptyError{/// Encountered an empty collection when it was expected to be non-empty.
Empty,/// Attempted to remove an element from a singleton [NonEmptyVec].
AlreadySingleton,}