1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/// Describes the content type that a client supports in various
/// result literals like `Hover`, `ParameterInfo` or `CompletionItem`.
///
/// Please note that `MarkupKinds` must not start with a `$`. This kinds
/// are reserved for internal usage.
#[derive(Debug, Serialize)]
pub enum MarkupKind {
    /// Plain text is supported as a content format
    PlainText,

    /// Markdown is supported as a content format
    Markdown,
}