1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::{
errors::{syntax_error, type_mismatch},
XCellValue,
};
use serde::{Deserialize, Serialize};
use xcell_errors::{for_3rd::DataType, XResult};
mod parse_cell;
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct VectorDescription {
pub default: Vec<XCellValue>,
}