assets_manager 0.13.9

Conveniently load, cache, and reload external resources
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Various utility types

mod bytes;
pub use bytes::SharedBytes;

mod string;
pub use string::SharedString;

mod private;
pub(crate) use private::*;

#[cfg(test)]
mod tests;

#[cfg(feature = "utils")]
pub mod cell;