pub trait Stream: DumpSection + Into<Section> {
// Required method
fn stream_type(&self) -> u32;
// Provided method
fn cite_stream_in(&self, section: Section) -> Section { ... }
}
Expand description
A minidump stream.
Required Methods§
Sourcefn stream_type(&self) -> u32
fn stream_type(&self) -> u32
The stream type, used in the stream directory.
Provided Methods§
Sourcefn cite_stream_in(&self, section: Section) -> Section
fn cite_stream_in(&self, section: Section) -> Section
Append an MDRawDirectory
referring to this stream to section
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.