ProgressDisplayFunc is a convenience function to create a ProgressDisplay. percent is -1 for indeterminate and 0-100 for determinate.
func(percent int) string
| 218 | // ProgressDisplayFunc is a convenience function to create a ProgressDisplay. |
| 219 | // percent is -1 for indeterminate and 0-100 for determinate. |
| 220 | type ProgressDisplayFunc func(percent int) string |
| 221 | |
| 222 | // Determinate satisfies ProgressDisplay interface. |
| 223 | func (p ProgressDisplayFunc) Determinate() [101]string { |
nothing calls this directly
no outgoing calls
no test coverage detected