ipp 0.2.0

IPP print protocol implementation for Rust
docs.rs failed to build ipp-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: ipp-5.0.3

ipp.rs

IPP protocol implementation for Rust

Documentation

Usage example:

extern crate ipp;
use ipp::{GetPrinterAttributes, IppClient};
pub fn main() {
    let client = IppClient::new("http://localhost:631/printers/test-printer");
    let operation = GetPrinterAttributes::new();

    let attrs = client.send(operation).unwrap();

    for v in attrs.get_printer_attributes().unwrap().values() {
        println!("{}: {}", v.name(), v.value());
    }
}

License

Licensed under MIT or Apache license (LICENSE-MIT or LICENSE-APACHE)