Giter Site home page Giter Site logo

Comments (4)

CGMossa avatar CGMossa commented on June 2, 2024 1

from tabled.

zhiburt avatar zhiburt commented on June 2, 2024

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.

#[derive(Tabled, Hash, PartialEq, Eq, PartialOrd, Ord)]
struct Distribution {
    name: &'static str,
    is_active: bool,
    is_cool: bool,
}

impl Distribution {
    fn new(name: &'static str, is_active: bool, is_cool: bool) -> Self {
        Self {
            name,
            is_active,
            is_cool,
        }
    }
}

fn main() {
    let mut data = std::collections::HashMap::new();
    data.insert(Distribution::new("Arch", true, true), "not used");
    data.insert(Distribution::new("Manjaro", true, true), "used");
    data.insert(Distribution::new("Fedora", true, true), "in use");

    let table = Table::new(&data);

    println!("{}", table);
}
+---------+-----------+---------+----------+
|  name   | is_active | is_cool |   &str   |
+---------+-----------+---------+----------+
| Manjaro |   true    |  true   |   used   |
+---------+-----------+---------+----------+
|  Arch   |   true    |  true   | not used |
+---------+-----------+---------+----------+
| Fedora  |   true    |  true   |  in use  |
+---------+-----------+---------+----------+

Though I probably would agree that it is not well documented how tabled works with HashMap, BTreeMap etc.


Did my answer help you?

from tabled.

CGMossa avatar CGMossa commented on June 2, 2024

This is great! And yes, this is not written somewhere that I could find.. But of course it makes sense as soon as I read that keys, and values has to implement Tabled.

Is it possible for you to write a little overview of what options are available for the derive-macro? I saw in the examples that
there are inline and other functionality in there..

from tabled.

zhiburt avatar zhiburt commented on June 2, 2024

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 README.md, maybe some example?
*Of course I can do it as well if you wish 😄

Is it possible for you to write a little overview of what options are available for the derive-macro? I saw in the examples that there are inline and other functionality in there..

I think that all options are covered in README.md.
But I can imagine it might be not as descriptive.

Where(How) do you feel it can be improved or be noted?
I mean in rust doc or README.md etc.

from tabled.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.