luaur-cli-lib 0.1.2

Shared CLI helpers for the luaur tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::enums::navigation_status::NavigationStatus;
use alloc::string::String;

#[derive(Debug, Clone)]
pub struct ResolvedRealPath {
    pub(crate) status: NavigationStatus,
    pub(crate) realPath: String,
}

#[allow(non_snake_case)]
impl ResolvedRealPath {
    pub const fn new(status: NavigationStatus, realPath: String) -> Self {
        Self { status, realPath }
    }
}