Is there a clearer way of representing dereferencing raw pointers and applying their functions in Rust?

Viewed 220

I'm working with raw pointers in Rust and I've got a couple of lines which are really hard to read because I can't find an operator in Rust that has a similar function to -> in C++. Does one exist?

Here's a snippet of my code in its currently hard to read state:

(*(*block).next().unwrap()).split(ExcHeader(30));
1 Answers
Related