pub enum StoredVariants { YesNo(bool), Small(u8), Signy(i64), Stringy(String), } pub struct StoredData { pub variant: StoredVariants, ...
確定! 回上一頁