Struct cobalt::Config [] [src]

pub struct Config {
    pub source: String,
    pub dest: String,
    pub layouts: String,
    pub drafts: String,
    pub include_drafts: bool,
    pub posts: String,
    pub post_path: Option<String>,
    pub post_order: SortOrder,
    pub template_extensions: Vec<String>,
    pub rss: Option<String>,
    pub jsonfeed: Option<String>,
    pub name: Option<String>,
    pub description: Option<String>,
    pub link: Option<String>,
    pub ignore: Vec<String>,
    pub excerpt_separator: String,
    pub dump: Vec<Dump>,
    pub syntax_highlight: SyntaxHighlight,
}

Fields

Methods

impl Config
[src]

[src]

Trait Implementations

impl Debug for Config
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Config
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Default for Config
[src]

[src]

Returns the "default value" for a type. Read more

impl From<GlobalConfig> for Config
[src]

[src]

Performs the conversion.