I'm trying to write some Rust with #![no_std] set. I am trying to iterate over a str one character at a time; however none of the usual techniques seem to work. When I try to access the characters via a function provided by str, e.g. for c in s.char_indices() or for c in s.chars() I receive the error:
type &str does not implement any method in scope named ___
My understanding was that str was a part of core and therefore any traits it implements should be available in no_std. Is there a way to access this functionality, or an alternate way to iterate over a str?