···100100 | `Socket
101101 ]
102102103103+ let pp_kind f k =
104104+ Fmt.pf f "%s"
105105+ (match k with
106106+ |`Unknown -> "unknown"
107107+ |`Fifo -> "fifo"
108108+ |`Character_special -> "character special file"
109109+ |`Directory -> "directory"
110110+ |`Block_device -> "block device"
111111+ |`Regular_file -> "regular file"
112112+ |`Symbolic_link -> "symbolic link"
113113+ |`Socket -> "socket")
114114+103115 external create : unit -> t = "ocaml_uring_make_statx"
104116105117 module Flags = struct
+2
vendor/opam/uring/lib/uring/uring.mli
···240240 | `Socket
241241 ]
242242243243+ val pp_kind : kind Fmt.t
244244+243245 val create : unit -> t
244246 (** Use [create] to make a statx result buffer to pass to {! statx}. *)
245247