package async_unix

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Unix.StatsSource

Sourcetype t = {
  1. dev : int;
  2. ino : int;
  3. kind : [ `File | `Directory | `Char | `Block | `Link | `Fifo | `Socket ];
  4. perm : int;
  5. uid : int;
  6. gid : int;
  7. rdev : int;
  8. size : int64;
  9. atime : Core.Time.t;
  10. mtime : Core.Time.t;
  11. ctime : Core.Time.t;
}
Sourceval ctime : t -> Core.Time.t
Sourceval mtime : t -> Core.Time.t
Sourceval atime : t -> Core.Time.t
Sourceval size : t -> int64
Sourceval rdev : t -> int
Sourceval gid : t -> int
Sourceval uid : t -> int
Sourceval perm : t -> int
Sourceval kind : t -> [ `File | `Directory | `Char | `Block | `Link | `Fifo | `Socket ]
Sourceval ino : t -> int
Sourceval dev : t -> int
Sourcemodule Fields : sig ... end
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0__.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0__.Sexp.t
include Core.Bin_prot.Binable.S with type t := t
Sourceval bin_size_t : t Bin_prot.Size.sizer
Sourceval bin_write_t : t Bin_prot.Write.writer
Sourceval bin_read_t : t Bin_prot.Read.reader
Sourceval __bin_read_t__ : (int -> t) Bin_prot.Read.reader
Sourceval bin_shape_t : Bin_prot.Shape.t
Sourceval compare : t -> t -> int
Sourceval of_unix : Core.Unix.stats -> t
Sourceval to_string : t -> string