mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 15:24:47 +00:00
core: Add u8 to the list of generated Value implementations (#392)
## Motivation u8 had been forgotten from the list of automatically generated implementations for the Value Trait. See bug report #389 ## Solution Added u8 to the list of automatically generated implementations for the Value Trait. Fixes: #389
This commit is contained in:
parent
d3e0c06774
commit
e48c14c7c7
@ -314,7 +314,7 @@ macro_rules! impl_value {
|
||||
|
||||
impl_values! {
|
||||
record_u64(u64),
|
||||
record_u64(usize, u32, u16 as u64),
|
||||
record_u64(usize, u32, u16, u8 as u64),
|
||||
record_i64(i64),
|
||||
record_i64(isize, i32, i16, i8 as i64),
|
||||
record_bool(bool)
|
||||
|
Loading…
x
Reference in New Issue
Block a user