Module Device.Version

Metadata about a device driver.

type device := t
type t = {
  1. version_major : int;
  2. version_minor : int;
  3. version_patchlevel : int;
  4. name : string;
  5. date : string;
  6. desc : string;
}
val get : device -> t
val pp : t Fmt.t