Struct cobalt::ConfigBuilder[][src]

pub struct ConfigBuilder {
    pub root: PathBuf,
    pub source: String,
    pub destination: String,
    pub abs_dest: Option<PathBuf>,
    pub include_drafts: bool,
    pub default: FrontmatterBuilder,
    pub pages: PageConfig,
    pub posts: PostConfig,
    pub site: SiteConfig,
    pub template_extensions: Vec<String>,
    pub ignore: Vec<String>,
    pub syntax_highlight: SyntaxHighlight,
    pub layouts_dir: &'static str,
    pub includes_dir: &'static str,
    pub assets: AssetsConfig,
}

Fields

Methods

impl ConfigBuilder
[src]

Trait Implementations

impl Debug for ConfigBuilder
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigBuilder
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ConfigBuilder
[src]

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

This method tests for !=.

impl Default for ConfigBuilder
[src]

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

impl Display for ConfigBuilder
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations