pub enum EmbeddedEntry {
File {
source_path_hash: u64,
data: &'static [u8],
compression: &'static str,
},
Dir {
source_path_hash: u64,
children: &'static [DirChild],
},
}Expand description
A top-level embedded entry baked into the installer binary at compile time.
Variants§
Auto Trait Implementations§
impl Freeze for EmbeddedEntry
impl RefUnwindSafe for EmbeddedEntry
impl Send for EmbeddedEntry
impl Sync for EmbeddedEntry
impl Unpin for EmbeddedEntry
impl UnsafeUnpin for EmbeddedEntry
impl UnwindSafe for EmbeddedEntry
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