logix-type 0.11.2

Provides the `LogixType` trait and the parser for `.logix` files, aimed at enabling easy-to-read-and-write configurations for `logix`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Types that implement the `LogixType` trait

#[macro_use]
mod valid_path;

mod array;
mod data;
mod executable_path;
mod map;
mod string;

pub use self::{
    data::Data,
    executable_path::{ExecutableEnv, ExecutablePath},
    map::Map,
    string::ShortStr,
    valid_path::{FullPath, NameOnlyPath, RelPath, ValidPath},
};