Function readStruct [src]
Prototype
pub inline fn readStruct(self: Self, comptime T: type) NoEofError!T
Parameters
self: Self
T: type
Possible Errors
Source
pub inline fn readStruct(self: Self, comptime T: type) NoEofError!T {
return @errorCast(self.any().readStruct(T));
}