Hacker News new | ask | show | jobs
by nick__m 663 days ago
Your example is not what the dbus crate does, in your case everything is related to T, it doesn't surprise!

In that crate the &*msg.interface().unwrap() magically become an &str !

1 comments

I don’t know the dbus crate, so I’m not trying to say anything about that crate’s usage, I’m simply saying that referencing after dereferencing is idiomatic Rust.

For example, the standard library `String` type dereferences to `str` which you can then re-reference to `&str`.

Sorry, I should have been clearer in my question, I wanted to know about A deref to B re-ref to &B.

ameliaquining awnsered my question and you modulated my opinion, that pattern is can be idiomatic when the principle of minimal surprises is respected.