pub struct MapEntry {
pub filename: Option<String>,
pub offset: Option<i64>,
pub compressed: bool,
pub data: bool,
pub depth: i64,
pub length: i64,
pub present: bool,
pub start: i64,
pub zero: bool,
}
Fields§
§filename: Option<String>
§offset: Option<i64>
§compressed: bool
§data: bool
§depth: i64
§length: i64
§present: bool
§start: i64
§zero: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapEntry
impl<'de> Deserialize<'de> for MapEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MapEntry
impl RefUnwindSafe for MapEntry
impl Send for MapEntry
impl Sync for MapEntry
impl Unpin for MapEntry
impl UnwindSafe for MapEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more