Maxim Zhiburt

Results 278 comments of Maxim Zhiburt

It could be a static buffer for different styles. For example ``` With Frame -> &[char; 8] No Frame -> &[char; 4] ```

Hi @y-young Thank you for opening this issue. So do you essentially mean that if a vector has only 1 variant we shall not render columns from other variants right?...

> Apparently this is a primitive approach and it's not automatic enough. I tried to modify the code but couldn't get it done since I'm new to Rust. I wonder...

> And actually because of this this will not work :( Because the column titles are note empty in your case. But it could be done in `Builder`. The usage...

Good I'll try to think about this idea. But I'd love to know what do you think about this > The usage would look like the following. > > ```rust...

Just a note: I've merged `Builder::clean` method. See https://github.com/zhiburt/tabled/blob/ddc81adea60e33bd06b6cdeb0a3911386a8e6194/src/builder.rs#L63-L105 If you want you can experiment with this by using from git. `tabled = { git = "https://github.com/zhiburt/tabled/", branch = "master"...

``` +-----+-----+-----+-----+-----+-----+-----+-----+ | | | | | | | | PRECEDENCE | D | T | R | 0 | 0 | | | | | | | | +-----+-----+-----+-----+-----+-----+-----+-----+...

closed by #224 The interface is not ideal, but not sure how it can be done differently.

Hi @CGMossa, So all collections from `std` must support `tabled`. For example in case of `HashMap` once key and value implements `Tabled`, everything will be smoothly work. ```rust #[derive(Tabled, Hash,...

> And yes, this is not written somewhere that I could find I think you are right, I wonder if you want to open a PR, with an update of...