Crate apple_bundle

Source
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.