utls 0.10.8

A simple utilities library for stuff I actually use sometimes, with a large focus on convenience and lack of dependencies.
Documentation
//! Somewhat useless traits

/// Declaration of traits
pub mod decl {
    pub trait Empty<T> {
        const EMPTY: T;
    }
}
/// Implementations of traits declared in `decl` for external types
pub mod imple {
    use super::decl::Empty;

    impl Empty<&str> for &str {
        const EMPTY: &'static str = "";
    }

    impl Empty<String> for String {
        const EMPTY: String = String::new();
    }
}