You can search for identifiers within the package.
in-package search v0.2.0
type page_aligned_buffer = Io_page.t
type buffer = Cstruct.t
type error = [
| `Disconnected
| `Unimplemented
| `Unknown of string
]
type macaddr = Macaddr.t
type 'a io = 'a Lwt.t
type t
type id = string
val id : t -> id
val connect : id -> [ `Error of error | `Ok of t ] io
val disconnect : t -> unit io
val write : t -> buffer -> unit io
val writev : t -> buffer list -> unit io
val read : t -> page_aligned_buffer -> [ `Error of error | `Ok of buffer ] io
val mac : t -> macaddr
type stats = {
mutable rx_bytes : int64;
mutable rx_pkts : int32;
mutable tx_bytes : int64;
mutable tx_pkts : int32;
}
val get_stats_counters : t -> stats
val reset_stats_counters : t -> unit