Trait GetInput

Source
pub trait GetInput {
    // Required method
    fn get_input(&self, name: impl AsRef<OsStr>) -> Option<OsString>;
}

Required Methods§

Source

fn get_input(&self, name: impl AsRef<OsStr>) -> Option<OsString>

Gets the raw value of an input.

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§

Source§

impl<E> GetInput for E
where E: Read,