Module Cpath.Resolved

type parent = [
  1. | `FragmentRoot
  2. | `Module of module_
  3. | `ModuleType of module_type
]
and module_ = [
  1. | `Alias of module_ * Cpath.module_ * module_ option
  2. | `Apply of module_ * module_
  3. | `Canonical of module_ * Odoc_model.Paths.Path.Module.t
  4. | `Gpath of Odoc_model.Paths.Path.Resolved.Module.t
  5. | `Hidden of module_
  6. | `Local of Odoc_xref2.Ident.path_module
  7. | `Module of parent * Odoc_model.Names.ModuleName.t
  8. | `OpaqueModule of module_
  9. | `Subst of module_type * module_
  10. | `Substituted of module_
]
and module_type = [
  1. | `AliasModuleType of module_type * module_type
  2. | `CanonicalModuleType of module_type * Odoc_model.Paths.Path.ModuleType.t
  3. | `Gpath of Odoc_model.Paths.Path.Resolved.ModuleType.t
  4. | `Local of Odoc_xref2.Ident.module_type
  5. | `ModuleType of parent * Odoc_model.Names.ModuleTypeName.t
  6. | `OpaqueModuleType of module_type
  7. | `SubstT of module_type * module_type
  8. | `Substituted of module_type
]
and value = [
  1. | `Value of parent * Odoc_model.Names.ValueName.t
]
and datatype = [
  1. | `CanonicalDataType of datatype * Odoc_model.Paths.Path.DataType.t
  2. | `Gpath of Odoc_model.Paths.Path.Resolved.DataType.t
  3. | `Local of Odoc_xref2.Ident.path_datatype
  4. | `Substituted of datatype
  5. | `Type of parent * Odoc_model.Names.TypeName.t
]
and constructor = [
  1. | `Constructor of datatype * Odoc_model.Names.ConstructorName.t
]