Stream

Trait Stream 

Source
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§

Source

fn stream_type(&self) -> u32

The stream type, used in the stream directory.

Provided Methods§

Source

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.

Implementors§