#byte-string

macro no-std bstringify

stringify! that yields byte string literals instead

3 releases

0.1.2 Jul 25, 2020
0.1.1 Jul 25, 2020
0.1.0 Jul 25, 2020

#2830 in Rust patterns

Download history 514/week @ 2024-07-22 488/week @ 2024-07-29 871/week @ 2024-08-05 553/week @ 2024-08-12 703/week @ 2024-08-19 544/week @ 2024-08-26 496/week @ 2024-09-02 516/week @ 2024-09-09 1023/week @ 2024-09-16 1173/week @ 2024-09-23 721/week @ 2024-09-30 835/week @ 2024-10-07 663/week @ 2024-10-14 455/week @ 2024-10-21 664/week @ 2024-10-28 927/week @ 2024-11-04

2,740 downloads per month
Used in 4 crates

Zlib OR MIT OR Apache-2.0

8KB

bstringify!

Like stringify!, but yielding byte string literals instead.

Repository Latest version Documentation License CI

Since .as_bytes() on strings is a const fn, this macro should only be useful to create a byte string literal to match against:

use ::bstringify::bstringify;

/// like FromStr but with [u8] instead
trait FromBytes : Sized {
    fn from_bytes (input: &'_ [u8])
      -> Option<Self>
    ;
}

macro_rules! derive_FromBytes {(
    $(#[$attr:meta])*
    $pub:vis
    enum $EnumName:ident {
        $(
            $Variant:ident
        ),* $(,)?
    }
) => (
    $(#[$attr])*
    $pub
    enum $EnumName {
        $(
            $Variant,
        )*
    }
    
    impl $crate::FromBytes
        for $EnumName
    {
        fn from_bytes (input: &'_ [u8])
          -> Option<Self>
        {
            match input {
            $(
                | bstringify!($Variant) => Some(Self::$Variant),
            )*
                | _ => None,
            }
        }
    }
)}

derive_FromBytes! {
    enum Example {
        Foo,
        Bar,
    }
}

fn main ()
{
    assert!(matches!(
        Example::from_bytes(b"Foo"), Some(Example::Foo)
    ));
    assert!(matches!(
        Example::from_bytes(b"Bar"), Some(Example::Bar)
    ));
    assert!(matches!(
        Example::from_bytes(b"Bad"), None
    ));
}

No runtime deps

Features