Function init [src]
Prototype
pub fn init(bytes: []const u8) HeaderIterator
Parameters
bytes: []const u8
Source
pub fn init(bytes: []const u8) HeaderIterator {
return .{
.bytes = bytes,
.index = std.mem.indexOfPosLinear(u8, bytes, 0, "\r\n").? + 2,
.is_trailer = false,
};
}