Skip to documentation
SLOP

tiny.http.ResponseSerialized

Reference tiny.http ResponseSerialized

Defined in tiny.http.

API (3)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstiny.httpResponseSerialized
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/http/src/response.zig:262

zig
pub const Serialized = struct {    head: []const u8,    body: ?[]const u8,    pub fn totalLength(self: Serialized) usize {        return self.head.len + if (self.body) |body| body.len else 0;    }};

Source: lib/http/src/root.zig:55

zig
pub const ResponseSerialized = response.Serialized;

Audit

Definitions2
Public names2
Members2
Version26.7.0
Revisiondaab053ee433