pub struct LayerInfo {
pub name: String,
pub size: u64,
pub file_count: usize,
pub writable: bool,
}Expand description
File layer information
Fields§
§name: StringLayer name
size: u64Layer size in bytes
file_count: usizeNumber of files
writable: boolWhether layer is writable
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LayerInfo
impl RefUnwindSafe for LayerInfo
impl Send for LayerInfo
impl Sync for LayerInfo
impl Unpin for LayerInfo
impl UnwindSafe for LayerInfo
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