Module Async_unix__Unix_syscalls.Passwd
Structure of entries in the passwd database.
type t= Core.Unix.Passwd.t={name : string;passwd : string;uid : int;gid : int;gecos : string;dir : string;shell : string;}
val shell : t -> stringval dir : t -> stringval gecos : t -> stringval gid : t -> intval uid : t -> intval passwd : t -> stringval name : t -> string
module Fields : sig ... endinclude Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.t
val getbyname : string -> t option Async_unix__.Import.Deferred.tval getbyname_exn : string -> t Async_unix__.Import.Deferred.tval getbyuid : int -> t option Async_unix__.Import.Deferred.tval getbyuid_exn : int -> t Async_unix__.Import.Deferred.t