winprint 0.2.0

A crate for printing to a Windows printer device using Windows API
Documentation
mod builder;
mod copies;
/// Document object model representation of print schema.
pub mod document;
mod feature_option_pack;
mod job_duplex;
mod media_size_tuple;
mod page_imageable_size;
mod page_media_size;
mod page_orientation;
mod page_output_color;
mod page_resolution;
mod predefined_duplex_type;
mod predefined_media_name;
mod predefined_page_orientation;
mod predefined_page_output_color;
mod print_capabilities;
mod print_ticket;

pub use builder::*;
pub use copies::*;
pub use feature_option_pack::*;
pub use job_duplex::*;
pub use media_size_tuple::*;
pub use page_imageable_size::*;
pub use page_media_size::*;
pub use page_orientation::*;
pub use page_output_color::*;
pub use page_resolution::*;
pub use predefined_duplex_type::*;
pub use predefined_media_name::*;
pub use predefined_page_orientation::*;
pub use predefined_page_output_color::*;
pub use print_capabilities::*;
pub use print_ticket::*;

/// The default print ticket XML.
pub const DEFAULT_PRINT_TICKET_XML: &str = r#"<psf:PrintTicket xmlns:psf="http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1" xmlns:psk="http://schemas.microsoft.com/windows/2003/08/printing/printschemakeywords"></psf:PrintTicket>"#;