2022-03-08 11:04:20 -07:00
error[E0599]: `*const u8` doesn't implement `std::fmt::Display`
2019-06-01 16:24:19 -07:00
--> $DIR/issue-21596.rs:4:22
|
LL | println!("{}", z.to_string());
2022-03-08 11:04:20 -07:00
| ^^^^^^^^^ `*const u8` cannot be formatted with the default formatter
2019-06-01 16:24:19 -07:00
|
= note: try using `<*const T>::as_ref()` to get a reference to the type behind the pointer: https://doc.rust-lang.org/std/primitive.pointer.html#method.as_ref
2019-07-14 15:05:25 -04:00
= note: using `<*const T>::as_ref()` on a pointer which is unaligned or points to invalid or uninitialized memory is undefined behavior
2020-09-26 17:20:14 -04:00
= note: the following trait bounds were not satisfied:
2020-02-21 13:39:47 -08:00
`*const u8: std::fmt::Display`
2020-09-02 10:40:56 +03:00
which is required by `*const u8: ToString`
2019-06-01 16:24:19 -07:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.