tupshin/cassandra-rs

TableMeta should implement Display

rustyrazorblade opened this issue · 2 comments

: the trait bound cassandra::TableMeta: std::fmt::Display is not satisfied [E0277]
src/main.rssrc/main.rs:188 :188 println!("Schema: {}", schema);

The larger issue here is that all user-visible types should implement Debug.

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