Hacker News new | ask | show | jobs
by shepmaster 663 days ago
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`.

1 comments

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.