pub struct ExecutableWriter<W: Write + Seek> { /* private fields */ }Expand description
Mach-O 可执行文件写入器
专门用于写入 Mach-O 可执行文件的写入器。
Implementations§
Trait Implementations§
Source§impl<W: Write + Seek> MachoWriter<W> for ExecutableWriter<W>
impl<W: Write + Seek> MachoWriter<W> for ExecutableWriter<W>
Source§fn write_program(&mut self, program: &MachoProgram) -> Result<(), GaiaError>
fn write_program(&mut self, program: &MachoProgram) -> Result<(), GaiaError>
写入 Mach-O 程序
Source§fn writer(&mut self) -> &mut BinaryWriter<W, Fixed<LittleEndian>>
fn writer(&mut self) -> &mut BinaryWriter<W, Fixed<LittleEndian>>
获取内部写入器的引用
Auto Trait Implementations§
impl<W> Freeze for ExecutableWriter<W>where
W: Freeze,
impl<W> !RefUnwindSafe for ExecutableWriter<W>
impl<W> Send for ExecutableWriter<W>where
W: Send,
impl<W> Sync for ExecutableWriter<W>where
W: Sync,
impl<W> Unpin for ExecutableWriter<W>where
W: Unpin,
impl<W> UnsafeUnpin for ExecutableWriter<W>where
W: UnsafeUnpin,
impl<W> !UnwindSafe for ExecutableWriter<W>
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