pub struct SectionPatchOutcome {
pub bytes: Vec<u8>,
pub patched_section: usize,
pub sections: usize,
}Expand description
Result of patching a single exported section back into a base HWPX package.
Fields§
§bytes: Vec<u8>Patched HWPX bytes.
patched_section: usizeWhich section was patched.
sections: usizeTotal section count in the output package.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SectionPatchOutcome
impl RefUnwindSafe for SectionPatchOutcome
impl Send for SectionPatchOutcome
impl Sync for SectionPatchOutcome
impl Unpin for SectionPatchOutcome
impl UnsafeUnpin for SectionPatchOutcome
impl UnwindSafe for SectionPatchOutcome
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