Reduce size of ModifierInfo
This commit is contained in:
parent
5974fe87c4
commit
791ba531c0
1 changed files with 3 additions and 3 deletions
|
@ -9,11 +9,11 @@ use std::str::FromStr;
|
|||
pub struct ModifierInfo {
|
||||
pub modifier: char,
|
||||
pub result: &'static str,
|
||||
pub size: u64,
|
||||
pub size: u16,
|
||||
}
|
||||
|
||||
impl From<(char, &'static str, u64)> for ModifierInfo {
|
||||
fn from((modifier, result, size): (char, &'static str, u64)) -> Self {
|
||||
impl From<(char, &'static str, u16)> for ModifierInfo {
|
||||
fn from((modifier, result, size): (char, &'static str, u16)) -> Self {
|
||||
Self { modifier, result, size }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue