We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61f17d6 commit ef39477Copy full SHA for ef39477
src/path/dec_int.rs
@@ -45,7 +45,7 @@ const _: () = assert!(u64::MAX_STR_LEN == i64::MAX_STR_LEN);
45
impl DecInt {
46
/// Construct a new path component from an integer.
47
#[inline]
48
- pub fn new<Int: Integer + 'static>(i: Int) -> Self {
+ pub fn new<Int: Integer>(i: Int) -> Self {
49
let mut buf = [MaybeUninit::uninit(); 21];
50
51
let mut str_buf = Buffer::new();
0 commit comments