Crate icu_provider_blob[−][src]
Expand description
icu_provider_blob
contains implementations of the ICU4X
DataProvider
interface
that load data from a single blob.
Currently, this crate supports only static blobs, but it will soon support blobs loaded dynamically at runtime (see #848).
To build blob data, use the --format blob
option of icu4x-datagen
. For example, to build
“hello world” data, run:
$ cargo run --bin=icu4x-datagen -- \ -v \ --format blob \ --hello-world-key \ --all-locales \ --out hello_world.postcard
Example
Create a StaticDataProvider
from pre-built test data:
let _ = icu_testdata::get_static_provider();
Modules
Utilities for dumping data to an ICU4X filesystem tree.
Structs
A data provider loading data statically baked in to the binary.