Skip to content

Commit

Permalink
Implement FromMeta for i128 and u128
Browse files Browse the repository at this point in the history
  • Loading branch information
greyblake authored and TedDriggs committed Jul 12, 2023
1 parent 8c4d6ad commit 7928941
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/from_meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,13 @@ from_meta_num!(u8);
from_meta_num!(u16);
from_meta_num!(u32);
from_meta_num!(u64);
from_meta_num!(u128);
from_meta_num!(usize);
from_meta_num!(i8);
from_meta_num!(i16);
from_meta_num!(i32);
from_meta_num!(i64);
from_meta_num!(i128);
from_meta_num!(isize);

/// Generate an impl of `FromMeta` that will accept strings which parse to floats or
Expand Down

0 comments on commit 7928941

Please sign in to comment.