pub struct DirSection<'a, W>
where W: Write + Seek,
{ /* private fields */ }
Expand description

Utility that wraps writing minidump directory entries to an I/O stream, generally a std::fs::File.

Implementations§

source§

impl<'a, W> DirSection<'a, W>
where W: Write + Seek,

source

pub fn new( buffer: &mut DumpBuf, index_length: u32, destination: &'a mut W ) -> Result<Self, FileWriterError>

source

pub fn position(&self) -> u32

source

pub fn dump_dir_entry( &mut self, buffer: &mut DumpBuf, dirent: MDRawDirectory ) -> Result<(), FileWriterError>

source

pub fn write_to_file( &mut self, buffer: &mut DumpBuf, dirent: Option<MDRawDirectory> ) -> Result<(), FileWriterError>

Writes 2 things to file:

  1. The given dirent into the dir section in the header (if any is given)
  2. Everything in the in-memory buffer that was added since the last call to this function

Trait Implementations§

source§

impl<'a, W> Debug for DirSection<'a, W>
where W: Write + Seek + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, W> Freeze for DirSection<'a, W>

§

impl<'a, W> RefUnwindSafe for DirSection<'a, W>
where W: RefUnwindSafe,

§

impl<'a, W> Send for DirSection<'a, W>
where W: Send,

§

impl<'a, W> Sync for DirSection<'a, W>
where W: Sync,

§

impl<'a, W> Unpin for DirSection<'a, W>

§

impl<'a, W> !UnwindSafe for DirSection<'a, W>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.