Struct abstio::abst_data::Entry [−][src]
pub struct Entry { pub checksum: String, pub uncompressed_size_bytes: u64, pub compressed_size_bytes: u64, }
A single file
Fields
checksum: String
md5sum of the file
uncompressed_size_bytes: u64
Uncompressed size in bytes. Because we have some massive files more than 2^32 bytes described by this, explicitly use u64 instead of usize, so wasm doesn’t break.
compressed_size_bytes: u64
Compressed size in bytes
Trait Implementations
impl<'de> Deserialize<'de> for Entry
[src]
impl<'de> Deserialize<'de> for Entry
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,