"does it hang or panic?" <- hangs, I forced a panic and it's a different message. even doing this hangs: ``` while i <= 64{ info!("Reading element {:?}", stream[i]); buf[i] = stream[i]; //Hangs here i += 1; } ``` this hangs on the first iteration of the loop..