Crate plist [] [src]

Plist

A rusty plist parser.

Usage

Put this in your Cargo.toml:

[dependencies]
plist = "0.0.11"

And put this in your crate root:

extern crate plist;

Examples

use plist::Plist;
use std::fs::File;

let file = File::open("tests/data/xml.plist").unwrap();
let plist = Plist::read(file).unwrap();

match plist {
Plist::Array(array) => (),
_ => ()
}

Modules

binary
xml

Structs

EventReader

Enums

Plist
PlistEvent
ReadError

Type Definitions

ReadResult