useserde::{Deserialize, Serialize};/// Used within this crates traits to interact with [`FileSystem`] and
/// [`RemoteZip`]
////// [`FileSystem`]: crate::FileSystem
/// [`RemoteZip`]: crate::RemoteZip
#[derive(Clone, Debug, PartialEq, Eq, Hash, Deserialize, Serialize)]pubstructFileInfo{/// with stripped prefix
publocal_unix_path: String,
/// It's recommended to use `crc32fast::hash`
pubcrc32:u32,
}