TableMeta should implement Display
rustyrazorblade opened this issue · 2 comments
rustyrazorblade commented
: the trait bound cassandra::TableMeta: std::fmt::Display
is not satisfied [E0277]
src/main.rssrc/main.rs:188 :188 println!("Schema: {}", schema);
cramertj commented
The larger issue here is that all user-visible types should implement Debug
.
tupshin commented
all public structs now implement Debug. I just added derive wherever it was missing. Custom Debug implementations for types that could benefit from it would be welcome