Skip to main content

TaskOutputFormat

Type Alias TaskOutputFormat 

Source
pub type TaskOutputFormat = OutputFormat;
Expand description

Backwards-compatible alias retained while task/project output modules transition.

Aliased Type§

pub enum TaskOutputFormat {
    Table,
    Json,
    Csv,
    Markdown,
}

Variants§

§

Table

Human-readable table; renders vertically for single records.

§

Json

JSON representation suitable for scripting.

§

Csv

Comma separated value export.

§

Markdown

Markdown friendly tables.