asterix_parser 0.1.1

Playground do Protocolo ASTERIX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
macro_rules! get_attributes {
    () => {
        {
            use crate::asterix::uap::common::datatypes::{AsterixAttribute, AttributeType}; 
            vec![
                AsterixAttribute::new(7, 1, 56, 1, "Currently active ACAS Resolution Advisory (RA)".to_string(), "acasra".to_string(), AttributeType::Opaque),
            ]
        }
    };
}

pub(crate) use get_attributes;