Driver contains device driver metadata for each driver found in the system.
| 32 | // Driver contains device driver metadata for each driver found in |
| 33 | // the system. |
| 34 | type Driver struct { |
| 35 | Filename string |
| 36 | Addr uintptr |
| 37 | } |
| 38 | |
| 39 | // String returns the driver string representation. |
| 40 | func (d Driver) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected