Trait SetInput

Source
pub trait SetInput {
    // Required method
    fn set_input(&self, name: impl AsRef<OsStr>, value: impl AsRef<OsStr>);
}

Required Methods§

Source

fn set_input(&self, name: impl AsRef<OsStr>, value: impl AsRef<OsStr>)

Sets 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> SetInput for E
where E: Write,