macro_rules! to_signed {
(i8 , $v:expr) => { ... };
(i16 , $v:expr) => { ... };
(i24 , $v:expr) => { ... };
(i32 , $v:expr) => { ... };
(i64 , $v:expr) => { ... };
(i128, $v:expr) => { ... };
(u8 , $v:expr) => { ... };
(u16 , $v:expr) => { ... };
(u24 , $v:expr) => { ... };
(u32 , $v:expr) => { ... };
(u64 , $v:expr) => { ... };
(u128, $v:expr) => { ... };
(f32 , $v:expr) => { ... };
(f64 , $v:expr) => { ... };
}Expand description
Scale the type to the corresponding signed type number