deviceState represents the state of a Device. There are three states: down, up, closed. Transitions: down -----+ ↑↓ ↓ up -> closed
| 103 | // ↑↓ ↓ |
| 104 | // up -> closed |
| 105 | type deviceState uint32 |
| 106 | |
| 107 | //go:generate go run golang.org/x/tools/cmd/stringer -type deviceState -trimprefix=deviceState |
| 108 | const ( |
no outgoing calls
no test coverage detected