//! User-facing configuration.
/// The configuration to be used when running the Ferru "build" subcommand.
#[derive(Clone, Debug)]pubstructConfig<'a>{/// The directory to be used as the source for the website being generated.
pubsource_directory:Option<&'astr>,
/// The directory to be used as the destination for the website being
/// generated.
pubdest_directory:Option<&'astr>,
}