spawnflake 0.2.9

Generate pattern based random data for mysql
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone)]
pub struct Chain {
    pub tokens: Vec<String>,
}

/// constructor for a string chain
impl Chain {
    pub fn new(tokens: std::vec::Vec<String>) -> Chain {
        Chain { tokens }
    }
}