mers_lib 0.9.7

library to use the mers language in other projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::data::Data;

use super::MersStatement;

pub struct InitTo {
    pub target: Box<dyn MersStatement>,
    pub source: Box<dyn MersStatement>,
}

impl MersStatement for InitTo {
    fn has_scope(&self) -> bool {
        false
    }
    fn run(&self, info: &mut super::Info) -> Data {}
}