Qu'est-ce que () dans la rouille

// The () type, also called “unit”.
// The () type has exactly one value (),
// and is used when there is no other meaningful value that could be returned:

fn long() -> () {}

fn short() {}
Ahmad Khaefi