ebarnard / rust-plist

A rusty plist parser.
MIT License
71 stars 42 forks source link

Implement methods that allow access to the Plist values. #9

Closed zummenix closed 8 years ago

zummenix commented 8 years ago

This is basically the same as in serde_json.

zummenix commented 8 years ago

The build error seems unrelated. @ebarnard, do you want me to fix it in this PR?

ebarnard commented 8 years ago

Don't worry about the build error.

PR's good except can you drop as_data_mut and change as_data to return &[u8]. It seems odd to give mutable access to Data but not to String.

zummenix commented 8 years ago

Sure. Done.

ebarnard commented 8 years ago

Thanks