Style: fmt binding rust code

This commit is contained in:
gongzhengyang 2025-09-28 15:51:54 +08:00
parent e887c01615
commit 1f1ad5aaf6
2 changed files with 5 additions and 5 deletions

View File

@ -2,5 +2,5 @@ mod error;
mod ip_value;
mod searcher;
pub use ip_value::IpValueExt;
pub use searcher::{CachePolicy, Searcher};
pub use ip_value::IpValueExt;

View File

@ -6,13 +6,13 @@ use std::net::IpAddr;
use std::path::Path;
use std::sync::OnceLock;
use maker::{
HEADER_INFO_LENGTH, Header, IpVersion, VECTOR_INDEX_COLS, VECTOR_INDEX_LENGTH,
VECTOR_INDEX_SIZE,
};
use tracing::{debug, trace, warn};
use crate::error::{Ip2RegionError, Result};
use maker::{
HEADER_INFO_LENGTH, Header, IpVersion, VECTOR_INDEX_LENGTH, VECTOR_INDEX_COLS,
VECTOR_INDEX_SIZE
};
use crate::ip_value::{CompareExt, IpValueExt};
pub struct Searcher {