const SAVE_CURSOR: [u8;3] = [127, 91, 115] is not b"\x1b[s"
const RESTORE_CURSOR: [u8;3] = [127, 91, 117] is not b"\x1b[u"
But
2)
const SAVE_CURSOR: [u8;3] = [127u8, 91u8, 115u8] is the same like b"\x1b[s"
const RESTORE_CURSOR: [u8;3] = [127u8, 91u8, 117u8] is the same like b"\x1b[u"
I find this confusing. Do I miss something?
When I use the 1) then I see [s and [u printed on the console.