const-str 1.1.0

compile-time string operations
Documentation
pub struct Unwrap<T>(pub T);

impl<T: Copy> Unwrap<Option<T>> {
    pub const fn const_eval(self) -> T {
        match self.0 {
            Some(x) => x,
            None => panic!("called `Option::unwrap()` on a `None` value"),
        }
    }
}

/// Unwraps a container, returns the content.
///
/// The input type must be one of
/// + [`Option<T>`], where `T: Copy`.
///
/// The [`Copy`] bound may be relaxed in the future.
///
/// This macro is [const-fn compatible](./index.html#const-fn-compatible).
#[macro_export]
macro_rules! unwrap {
    ($expr: expr) => {{
        $crate::__ctfe::Unwrap($expr).const_eval()
    }};
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_unwrap_some() {
        const X: Option<i32> = Some(42);
        const Y: i32 = unwrap!(X);
        assert_eq!(Y, 42);

        const S: Option<&str> = Some("hello");
        const T: &str = unwrap!(S);
        assert_eq!(T, "hello");

        let b: Option<bool> = Some(true);
        let c: bool = unwrap!(b);
        assert!(c);
    }

    #[test]
    fn test_unwrap_runtime() {
        // Runtime tests for Unwrap
        let unwrap_some = Unwrap(Some(42));
        assert_eq!(unwrap_some.const_eval(), 42);

        let unwrap_str = Unwrap(Some("test"));
        assert_eq!(unwrap_str.const_eval(), "test");

        let unwrap_bool = Unwrap(Some(false));
        assert!(!unwrap_bool.const_eval());
    }
}