ip2location-bin-format 0.4.0

IP2Location BIN Format
Documentation
1
2
3
4
5
6
7
8
9
10
11
//
#[derive(Debug)]
pub(super) struct Inner {
    pub(super) bytes: Vec<u8>,
}

impl Inner {
    pub(super) fn new(bytes: Vec<u8>) -> Self {
        Self { bytes }
    }
}