Comment on thisIsGoingToBeASeriousDebate
TadoTheRustacean@programming.dev 1 year agoI am hopeless at getting the text_ptr simpler than i64::from_str_radix(&format!(“{:p}”, my_string)[2…], 16).unwrap(); How can i get it the normal way?
Comment on thisIsGoingToBeASeriousDebate
TadoTheRustacean@programming.dev 1 year agoI am hopeless at getting the text_ptr simpler than i64::from_str_radix(&format!(“{:p}”, my_string)[2…], 16).unwrap(); How can i get it the normal way?
Speiser0@feddit.de 1 year ago
Just use
str::as_ptr()
.Here’s an example (disclaimer: I haven’t used inline asm in rust before, expect issues): godbolt.org/z/sczYGe96f