Trait ReadWrapperBuilder

Source
pub trait ReadWrapperBuilder {
    type Wrapper: 'static + Read;

    // Required method
    fn new_wrapped_reader(self, f: File) -> Self::Wrapper;
}
Expand description

The Read wrapper builder.

For more information, see DetectReader::open_with_wrapper().

Required Associated Types§

Source

type Wrapper: 'static + Read

Read wrapper of File

Required Methods§

Source

fn new_wrapped_reader(self, f: File) -> Self::Wrapper

Create new wrapper.

Implementors§