plist-rs icon indicating copy to clipboard operation
plist-rs copied to clipboard

Implement convenience accessors on Plist

Open conradev opened this issue 7 years ago • 1 comments

Like Result, Plist should have convenience accessors. Something like the following, but for all data types:

impl Plist {
    fn is_string(&self) -> bool;
    fn string(self) -> Option<String>;
}

This is low hanging fruit, and great for someone just getting started

conradev avatar Oct 31 '16 23:10 conradev