ellie_core 0.7.3

Core modules for ellie
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{definite::types, defs};
use alloc::string::String;
use serde::{Deserialize, Serialize};

#[derive(PartialEq, Debug, Clone, Serialize, Deserialize)]
pub struct FileKey {
    pub key_name: String,
    pub value: types::Types,
    pub key_name_location: defs::Cursor,
    pub is_global: bool,
    pub value_location: defs::Cursor,
    pub pos: defs::Cursor,
}