Skip to main content

luaur_cli_lib/records/
vfs_navigator.rs

1use alloc::string::String;
2
3#[derive(Debug, Clone, Default)]
4pub struct VfsNavigator {
5    pub(crate) real_path: String,
6    pub(crate) absolute_real_path: String,
7    pub(crate) absolute_path_prefix: String,
8    pub(crate) module_path: String,
9    pub(crate) absolute_module_path: String,
10}
11
12pub use crate::enums::config_status::ConfigStatus;