]> code.octet-stream.net Git - m17rt/blobdiff - m17core/src/address.rs
Fix timing bugs and add documentation
[m17rt] / m17core / src / address.rs
index f6ffa9295601195ae26d7a5e11ecf8939224d8ce..a224000d07e2c266491d15c55d2f3fe7c42ca707 100755 (executable)
@@ -10,12 +10,10 @@ pub enum Address {
 ///
 /// May be up to 9 characters long - if it shorter then remaining space is filled with
 /// space characters.
 ///
 /// May be up to 9 characters long - if it shorter then remaining space is filled with
 /// space characters.
-///
-/// If the "std" feature is enabled then callsigns be converted to or created from strings.
 #[derive(Debug, Clone, PartialEq, Eq)]
 #[derive(Debug, Clone, PartialEq, Eq)]
-pub struct Callsign([u8; 9]);
+pub struct Callsign(pub [u8; 9]);
 
 
-static ALPHABET: [u8; 40] = [
+pub static ALPHABET: [u8; 40] = [
     b' ', b'A', b'B', b'C', b'D', b'E', b'F', b'G', b'H', b'I', b'J', b'K', b'L', b'M', b'N', b'O',
     b'P', b'Q', b'R', b'S', b'T', b'U', b'V', b'W', b'X', b'Y', b'Z', b'0', b'1', b'2', b'3', b'4',
     b'5', b'6', b'7', b'8', b'9', b'-', b'/', b'.',
     b' ', b'A', b'B', b'C', b'D', b'E', b'F', b'G', b'H', b'I', b'J', b'K', b'L', b'M', b'N', b'O',
     b'P', b'Q', b'R', b'S', b'T', b'U', b'V', b'W', b'X', b'Y', b'Z', b'0', b'1', b'2', b'3', b'4',
     b'5', b'6', b'7', b'8', b'9', b'-', b'/', b'.',