pub struct ExListStream<T: ListItem> { /* private fields */ }
Implementations§
Source§impl<T: ListItem> ExListStream<T>
impl<T: ListItem> ExListStream<T>
pub fn new<S: Into<u32>>( stream_type: S, size_of_entry: usize, endian: Endian, ) -> Self
pub fn new_with_header_size<S: Into<u32>>( stream_type: S, size_of_header: usize, size_of_entry: usize, endian: Endian, ) -> Self
pub fn add(self, entry: T) -> Self
pub fn is_empty(&self) -> bool
Trait Implementations§
Source§impl<T: ListItem> DumpSection for ExListStream<T>
impl<T: ListItem> DumpSection for ExListStream<T>
Source§impl<T: ListItem> From<ExListStream<T>> for Section
impl<T: ListItem> From<ExListStream<T>> for Section
Source§fn from(stream: ExListStream<T>) -> Self
fn from(stream: ExListStream<T>) -> Self
Converts to this type from the input type.
Source§impl<T: ListItem> Stream for ExListStream<T>
impl<T: ListItem> Stream for ExListStream<T>
Source§fn stream_type(&self) -> u32
fn stream_type(&self) -> u32
The stream type, used in the stream directory.
Source§fn cite_stream_in(&self, section: Section) -> Section
fn cite_stream_in(&self, section: Section) -> Section
Append an
MDRawDirectory
referring to this stream to section
.Auto Trait Implementations§
impl<T> Freeze for ExListStream<T>
impl<T> !RefUnwindSafe for ExListStream<T>
impl<T> !Send for ExListStream<T>
impl<T> !Sync for ExListStream<T>
impl<T> Unpin for ExListStream<T>where
T: Unpin,
impl<T> !UnwindSafe for ExListStream<T>
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
Source§impl<T> CiteLocation for Twhere
T: DumpSection,
impl<T> CiteLocation for Twhere
T: DumpSection,
Source§fn cite_location_in(&self, section: Section) -> Section
fn cite_location_in(&self, section: Section) -> Section
Append an
MINIDUMP_LOCATION_DESCRIPTOR
to section
referring to this section.