Trait clipboard_win::Setter[][src]

pub trait Setter<Type> {
    fn write_clipboard(&self, data: &Type) -> SysResult<()>;
}
Expand description

Describes format setter, specifying data type as type param

Default implementations only perform write, without opening/closing clipboard

Required methods

Writes content of data onto clipboard, returning whether it was successful or not

Implementors