Expand description
§Apple Bundle Resources
Resources located in an app, framework, or plugin bundle.
A bundle is a directory with a standardized hierarchical structure that holds executable code and the resources used by that code. The bundle contains resources that may be accessed at runtime, such as images, audio files, user interface files, and property lists.
Official documentation: https://developer.apple.com/documentation/bundleresources
Re-exports§
pub use plist;
Modules§
- entitlements
- Entitlements
- info_
plist - Information Property List
- prelude
- Prelude
Functions§
- from_
bytes - Deserializes an instance of type
T
from a byte slice. - from_
file - Deserializes an instance of type
T
from a plist file of any encoding. - from_
reader - Deserializes an instance of type
T
from a seekable byte stream containing a plist of any encoding. - from_
reader_ xml - Deserializes an instance of type
T
from a byte stream containing an XML encoded plist. - to_
file_ binary - Serializes the given data structure to a file as a binary encoded plist.
- to_
file_ xml - Serializes the given data structure to a file as an XML encoded plist.
- to_
writer_ binary - Serializes the given data structure to a byte stream as a binary encoded plist.
- to_
writer_ xml - Serializes the given data structure to a byte stream as an XML encoded plist.