mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-24 02:27:32 +00:00
7 lines
161 B
Go
7 lines
161 B
Go
package quic
|
|
|
|
// StreamReadResult holds information relating to the result returned from readInto.
|
|
type StreamReadResult struct {
|
|
Amount int
|
|
Finished bool
|
|
}
|