1 2 3 4 5 6 7 8 9 10
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
#[derive(Clone, Debug, Default)]
pub struct Config {
// blank is no more used
// pub blanks: Vec<Blank>,
pub rescans: Vec<u32>,
}
1 2 3 4 5 6 7 8 9 10
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
#[derive(Clone, Debug, Default)]
pub struct Config {
// blank is no more used
// pub blanks: Vec<Blank>,
pub rescans: Vec<u32>,
}