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 : Async_unix__.Import.Time.t;
  10. mtime : Async_unix__.Import.Time.t;
  11. ctime : Async_unix__.Import.Time.t;
}
Sourceval ctime : t -> Async_unix__.Import.Time.t
Sourceval mtime : t -> Async_unix__.Import.Time.t
Sourceval atime : t -> Async_unix__.Import.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
include Sexplib0.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
include Bin_prot.Binable.S_only_functions 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

This function only needs implementation if t exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t afterwards.

Sourceval bin_shape_t : Bin_prot.Shape.t
include Ppx_compare_lib.Comparable.S with type t := t
Sourceval compare : t -> t -> int
Sourceval of_unix : Core_unix.stats -> t
Sourceval to_unix : t -> Core_unix.stats
Sourceval to_string : t -> string
OCaml

Innovation. Community. Security.