package ocamlnet

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type store = [
  1. | `File of string
  2. | `Memory
]
exception Immutable of string
class type mime_header_ro = object ... end
class type mime_header = object ... end
class type mime_body_ro = object ... end
class type mime_body = object ... end
type complex_mime_message = mime_header * complex_mime_body
and complex_mime_body = [
  1. | `Body of mime_body
  2. | `Parts of complex_mime_message list
]
type complex_mime_message_ro = mime_header_ro * complex_mime_body_ro
and complex_mime_body_ro = [
  1. | `Body of mime_body_ro
  2. | `Parts of complex_mime_message_ro list
]
type mime_message = mime_header * [ `Body of mime_body ]
type mime_message_ro = mime_header_ro * [ `Body of mime_body_ro ]
class basic_mime_header : (string * string) list -> mime_header
val basic_mime_header : (string * string) list -> mime_header
val wrap_mime_header_ro : mime_header_ro -> mime_header
class memory_mime_body : string -> mime_body
val memory_mime_body : string -> mime_body
class file_mime_body : ?fin:bool -> string -> mime_body
val file_mime_body : ?fin:bool -> string -> mime_body
val wrap_mime_body_ro : mime_body_ro -> mime_body
val wrap_complex_mime_message_ro : complex_mime_message_ro -> complex_mime_message
OCaml

Innovation. Community. Security.