Module Name_status.Change

type t = Volgo.Vcs.Name_status.Change.t =
  1. | Added of Volgo.Vcs.Path_in_repo.t
  2. | Removed of Volgo.Vcs.Path_in_repo.t
  3. | Modified of Volgo.Vcs.Path_in_repo.t
  4. | Copied of {
    1. src : Volgo.Vcs.Path_in_repo.t;
    2. dst : Volgo.Vcs.Path_in_repo.t;
    3. similarity : Base.int;
    }
  5. | Renamed of {
    1. src : Volgo.Vcs.Path_in_repo.t;
    2. dst : Volgo.Vcs.Path_in_repo.t;
    3. similarity : Base.int;
    }
include module type of Volgo.Vcs.Name_status.Change with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
val equal : t -> t -> bool