I have a struct
Struct {
Username: [32:0]u8,
Email: [65:0]u8
}
When I check the contents it's 'biom4st3r\0' followed by 0xaa's, but when I print it via client.stream.writer().print("{s}", .{data.username}) ,with client being a StreamServer.Connection, it comes out as biom4st3r followed by a bunch of Unicode junk.
I have a function that just returns a slice ending at the sentinel, but I thought I had it working earlier without the function