Expand description
Handles loading of Rerun data from file using data loader plugins.
Structs§
- Loads data from any supported file or in-memory contents as native
re_types::Archetypes. - Recommended settings for the
DataLoader. - Recursively oads entire directories, using the appropriate
crate::DataLoader:s for each files within. - A
crate::DataLoaderthat forwards the path to load to all executables present in the user’sPATHwith a name that starts withEXTERNAL_DATA_LOADER_PREFIX. - Loads data from any
rrdfile or in-memory contents.
Enums§
- Errors that might happen when loading data through a
DataLoader. - What
DataLoaders load.
Constants§
- When an external
crate::DataLoaderis asked to load some data that it doesn’t know how to load, it should exit with this exit code. - To register a new external data loader, simply add an executable in your $PATH whose name starts with this prefix.
- Experimental video support!
Traits§
- A
DataLoaderloads data from a file path and/or a file’s contents.
Functions§
- Is this a supported file extension by any of our builtin
DataLoaders? - Iterator over all registered external
crate::DataLoaders. - Iterator over all registered
DataLoaders. - Loads the given
contentsusing allcrate::DataLoaders available. - Loads the given
pathusing allcrate::DataLoaders available. - Register a custom
DataLoader. - All file extension supported by our builtin
DataLoaders.