SYMBOL INDEX (234 symbols across 21 files) FILE: examples/asset_savers/asset_savers.rs function main (line 31) | fn main() { function setup (line 118) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_trees (line 132) | fn spawn_trees( type AppState (line 173) | enum AppState { type ImageHandle (line 180) | struct ImageHandle(Handle); type LevelHandles (line 183) | struct LevelHandles { type Level (line 194) | struct Level { FILE: examples/cbor.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 25) | fn spawn_level( type Level (line 44) | struct Level { type AppState (line 49) | enum AppState { type ImageHandle (line 56) | struct ImageHandle(Handle); type LevelHandle (line 59) | struct LevelHandle(Handle); FILE: examples/csv.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 26) | fn spawn_level( type TreePosition (line 46) | struct TreePosition { type AppState (line 53) | enum AppState { type ImageHandle (line 60) | struct ImageHandle(Handle); type LevelHandle (line 63) | struct LevelHandle(Handle>); FILE: examples/json.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 26) | fn spawn_level( type Level (line 46) | struct Level { type AppState (line 51) | enum AppState { type ImageHandle (line 58) | struct ImageHandle(Handle); type LevelHandle (line 61) | struct LevelHandle(Handle); FILE: examples/msgpack.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 26) | fn spawn_level( type Level (line 46) | struct Level { type AppState (line 51) | enum AppState { type ImageHandle (line 58) | struct ImageHandle(Handle); type LevelHandle (line 61) | struct LevelHandle(Handle); FILE: examples/multiple_formats.rs function main (line 6) | fn main() { type Level (line 23) | struct Level { function setup (line 27) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 37) | fn spawn_level( function check_loading (line 54) | fn check_loading( type AppState (line 72) | enum AppState { type ImageHandle (line 79) | struct ImageHandle(Handle); type Levels (line 82) | struct Levels(Vec>); FILE: examples/postcard.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 25) | fn spawn_level( type Level (line 44) | struct Level { type AppState (line 49) | enum AppState { type ImageHandle (line 56) | struct ImageHandle(Handle); type LevelHandle (line 59) | struct LevelHandle(Handle); FILE: examples/ron.rs function main (line 5) | fn main() { function setup (line 14) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 23) | fn spawn_level( type Level (line 43) | struct Level { type AppState (line 48) | enum AppState { type ImageHandle (line 55) | struct ImageHandle(Handle); type LevelHandle (line 58) | struct LevelHandle(Handle); FILE: examples/toml.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 26) | fn spawn_level( type Level (line 46) | struct Level { type AppState (line 51) | enum AppState { type ImageHandle (line 58) | struct ImageHandle(Handle); type LevelHandle (line 61) | struct LevelHandle(Handle); FILE: examples/xml.rs function main (line 6) | fn main() { function setup (line 15) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 24) | fn spawn_level( type Level (line 44) | struct Level { type Position (line 50) | struct Position { type AppState (line 60) | enum AppState { type ImageHandle (line 67) | struct ImageHandle(Handle); type LevelHandle (line 70) | struct LevelHandle(Handle); FILE: examples/yaml.rs function main (line 5) | fn main() { function setup (line 17) | fn setup(mut commands: Commands, asset_server: Res) { function spawn_level (line 26) | fn spawn_level( type Level (line 46) | struct Level { type AppState (line 51) | enum AppState { type ImageHandle (line 58) | struct ImageHandle(Handle); type LevelHandle (line 61) | struct LevelHandle(Handle); FILE: src/cbor.rs type CborAssetPlugin (line 12) | pub struct CborAssetPlugin { method build (line 21) | fn build(&self, app: &mut App) { function new (line 35) | pub fn new(extensions: &[&'static str]) -> Self { type CborAssetLoader (line 45) | pub struct CborAssetLoader { type CborAssetError (line 53) | pub enum CborAssetError { type Asset (line 71) | type Asset = A; type Settings (line 72) | type Settings = (); type Error (line 73) | type Error = CborAssetError; method load (line 75) | async fn load( method extensions (line 87) | fn extensions(&self) -> &[&str] { type CborAssetSaver (line 94) | pub struct CborAssetSaver { method default (line 99) | fn default() -> Self { type Asset (line 107) | type Asset = A; type Settings (line 108) | type Settings = (); type OutputLoader (line 109) | type OutputLoader = CborAssetLoader; type Error (line 110) | type Error = CborAssetError; method save (line 112) | async fn save( FILE: src/csv.rs type CsvAssetPlugin (line 9) | pub struct CsvAssetPlugin { method build (line 19) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { function with_delimiter (line 58) | pub fn with_delimiter(mut self, delimiter: u8) -> Self { type CsvAssetLoader (line 66) | pub struct CsvAssetLoader { type CsvLoaderError (line 75) | pub enum CsvLoaderError { type LoadedCsv (line 86) | pub struct LoadedCsv type Asset (line 98) | type Asset = LoadedCsv; type Settings (line 99) | type Settings = (); type Error (line 100) | type Error = CsvLoaderError; method load (line 102) | async fn load( method extensions (line 120) | fn extensions(&self) -> &[&str] { FILE: src/json.rs type JsonAssetPlugin (line 11) | pub struct JsonAssetPlugin { method build (line 20) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { type JsonAssetLoader (line 44) | pub struct JsonAssetLoader { type JsonAssetError (line 52) | pub enum JsonAssetError { type JsonLoaderError (line 63) | pub type JsonLoaderError = JsonAssetError; type Asset (line 69) | type Asset = A; type Settings (line 70) | type Settings = (); type Error (line 71) | type Error = JsonAssetError; method load (line 73) | async fn load( method extensions (line 85) | fn extensions(&self) -> &[&str] { type JsonAssetSaver (line 92) | pub struct JsonAssetSaver { method default (line 97) | fn default() -> Self { type Asset (line 105) | type Asset = A; type Settings (line 106) | type Settings = (); type OutputLoader (line 107) | type OutputLoader = JsonAssetLoader; type Error (line 108) | type Error = JsonAssetError; method save (line 110) | async fn save( FILE: src/lib.rs type ReadmeDoctests (line 101) | pub struct ReadmeDoctests; FILE: src/msgpack.rs type MsgPackAssetPlugin (line 11) | pub struct MsgPackAssetPlugin { method build (line 20) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { type MsgPackAssetLoader (line 44) | pub struct MsgPackAssetLoader { type MsgPackAssetError (line 52) | pub enum MsgPackAssetError { type MsgPackLoaderError (line 66) | pub type MsgPackLoaderError = MsgPackAssetError; type Asset (line 72) | type Asset = A; type Settings (line 73) | type Settings = (); type Error (line 74) | type Error = MsgPackAssetError; method load (line 76) | async fn load( method extensions (line 88) | fn extensions(&self) -> &[&str] { type MsgPackAssetSaver (line 95) | pub struct MsgPackAssetSaver { method default (line 100) | fn default() -> Self { type Asset (line 108) | type Asset = A; type Settings (line 109) | type Settings = (); type OutputLoader (line 110) | type OutputLoader = MsgPackAssetLoader; type Error (line 111) | type Error = MsgPackAssetError; method save (line 113) | async fn save( FILE: src/postcard.rs type PostcardAssetPlugin (line 12) | pub struct PostcardAssetPlugin { method build (line 21) | fn build(&self, app: &mut App) { function new (line 35) | pub fn new(extensions: &[&'static str]) -> Self { type PostcardAssetLoader (line 45) | pub struct PostcardAssetLoader { type PostcardAssetError (line 53) | pub enum PostcardAssetError { type Asset (line 66) | type Asset = A; type Settings (line 67) | type Settings = (); type Error (line 68) | type Error = PostcardAssetError; method load (line 70) | async fn load( method extensions (line 82) | fn extensions(&self) -> &[&str] { type PostcardAssetSaver (line 89) | pub struct PostcardAssetSaver { method default (line 94) | fn default() -> Self { type Asset (line 102) | type Asset = A; type Settings (line 103) | type Settings = (); type OutputLoader (line 104) | type OutputLoader = PostcardAssetLoader; type Error (line 105) | type Error = PostcardAssetError; method save (line 107) | async fn save( FILE: src/ron.rs type RonAssetPlugin (line 11) | pub struct RonAssetPlugin { method build (line 20) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { type RonAssetLoader (line 44) | pub struct RonAssetLoader { type RonAssetError (line 52) | pub enum RonAssetError { type RonLoaderError (line 66) | pub type RonLoaderError = RonAssetError; type Asset (line 72) | type Asset = A; type Settings (line 73) | type Settings = (); type Error (line 74) | type Error = RonAssetError; method load (line 76) | async fn load( method extensions (line 88) | fn extensions(&self) -> &[&str] { type RonAssetSaver (line 95) | pub struct RonAssetSaver { method default (line 100) | fn default() -> Self { type Asset (line 108) | type Asset = A; type Settings (line 109) | type Settings = (); type OutputLoader (line 110) | type OutputLoader = RonAssetLoader; type Error (line 111) | type Error = RonAssetError; method save (line 113) | async fn save( FILE: src/toml.rs type TomlAssetPlugin (line 11) | pub struct TomlAssetPlugin { method build (line 20) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { type TomlAssetLoader (line 44) | pub struct TomlAssetLoader { type TomlAssetError (line 52) | pub enum TomlAssetError { type TomlLoaderError (line 69) | pub type TomlLoaderError = TomlAssetError; type Asset (line 75) | type Asset = A; type Settings (line 76) | type Settings = (); type Error (line 77) | type Error = TomlAssetError; method load (line 79) | async fn load( method extensions (line 91) | fn extensions(&self) -> &[&str] { type TomlAssetSaver (line 98) | pub struct TomlAssetSaver { method default (line 103) | fn default() -> Self { type Asset (line 111) | type Asset = A; type Settings (line 112) | type Settings = (); type OutputLoader (line 113) | type OutputLoader = TomlAssetLoader; type Error (line 114) | type Error = TomlAssetError; method save (line 116) | async fn save( FILE: src/xml.rs type XmlAssetPlugin (line 13) | pub struct XmlAssetPlugin { method build (line 22) | fn build(&self, app: &mut App) { function new (line 36) | pub fn new(extensions: &[&'static str]) -> Self { type XmlAssetLoader (line 46) | pub struct XmlAssetLoader { type XmlAssetError (line 54) | pub enum XmlAssetError { type XmlLoaderError (line 71) | pub type XmlLoaderError = XmlAssetError; type Asset (line 77) | type Asset = A; type Settings (line 78) | type Settings = (); type Error (line 79) | type Error = XmlAssetError; method load (line 81) | async fn load( method extensions (line 93) | fn extensions(&self) -> &[&str] { type XmlAssetSaver (line 100) | pub struct XmlAssetSaver { method default (line 105) | fn default() -> Self { type Asset (line 113) | type Asset = A; type Settings (line 114) | type Settings = (); type OutputLoader (line 115) | type OutputLoader = XmlAssetLoader; type Error (line 116) | type Error = XmlAssetError; method save (line 118) | async fn save( FILE: src/yaml.rs type YamlAssetPlugin (line 11) | pub struct YamlAssetPlugin { method build (line 20) | fn build(&self, app: &mut App) { function new (line 34) | pub fn new(extensions: &[&'static str]) -> Self { type YamlAssetLoader (line 44) | pub struct YamlAssetLoader { type YamlAssetError (line 52) | pub enum YamlAssetError { type YamlLoaderError (line 63) | pub type YamlLoaderError = YamlAssetError; type Asset (line 69) | type Asset = A; type Settings (line 70) | type Settings = (); type Error (line 71) | type Error = YamlAssetError; method load (line 73) | async fn load( method extensions (line 85) | fn extensions(&self) -> &[&str] { type YamlAssetSaver (line 92) | pub struct YamlAssetSaver { method default (line 97) | fn default() -> Self { type Asset (line 105) | type Asset = A; type Settings (line 106) | type Settings = (); type OutputLoader (line 107) | type OutputLoader = YamlAssetLoader; type Error (line 108) | type Error = YamlAssetError; method save (line 110) | async fn save(