pub struct SimpleStream {
pub stream_type: u32,
pub section: Section,
}
Expand description
A stream of arbitrary data.
Fields§
§stream_type: u32
The stream type.
section: Section
The stream’s contents.
Trait Implementations§
Source§impl DumpSection for SimpleStream
impl DumpSection for SimpleStream
Source§impl From<SimpleStream> for Section
impl From<SimpleStream> for Section
Source§fn from(stream: SimpleStream) -> Self
fn from(stream: SimpleStream) -> Self
Converts to this type from the input type.
Source§impl Stream for SimpleStream
impl Stream for SimpleStream
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 Freeze for SimpleStream
impl !RefUnwindSafe for SimpleStream
impl !Send for SimpleStream
impl !Sync for SimpleStream
impl Unpin for SimpleStream
impl !UnwindSafe for SimpleStream
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.