pub trait FilePrinterProvider {
// Required method
fn driver_name() -> &'static str;
}Expand description
Required Methods§
Sourcefn driver_name() -> &'static str
fn driver_name() -> &'static str
Returns the Windows driver name (as accepted by Add-Printer -DriverName) to use for the
virtual printer.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".