asterix_parser 0.1.1

Playground do Protocolo ASTERIX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
macro_rules! get_attributes_010 {
    () => {
        {
            vec!["A", "B", "C", "D"]
        }
    };
}

#[test]
pub fn test_macro_rules() {
    let a = get_attributes_010!();
    let mut count = 0;
    for item in a {
        count += 1;
        println!("Item[{}] = [{}]", count, item);
    }
}