pub struct BottleResult {
pub path: PathBuf,
pub size: u64,
pub sha256: String,
pub file_count: usize,
}Expand description
Result of bottle creation
Fields§
§path: PathBufPath to the created bottle
size: u64Size in bytes
sha256: StringSHA256 hash of the bottle
file_count: usizeNumber of files included
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BottleResult
impl RefUnwindSafe for BottleResult
impl Send for BottleResult
impl Sync for BottleResult
impl Unpin for BottleResult
impl UnwindSafe for BottleResult
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