You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package jcstypes
-
- import "time"
-
- type SpeedStatsStatus struct {
- Below100M []SpeedStatsStatusEntry `json:"below100M"`
- Below1G []SpeedStatsStatusEntry `json:"below1G"`
- Above1G []SpeedStatsStatusEntry `json:"above1G"`
- }
-
- type SpeedStatsStatusEntry struct {
- TotalSize int64 `json:"totalSize"`
- TotalTime time.Duration `json:"totalTime"`
- AvarageSpeed float64 `json:"avarageSpeed"`
- LastSpeed float64 `json:"lastSpeed"`
- }
|