Struct rls_data::config::Config
[−]
[src]
pub struct Config {
pub output_file: Option<String>,
pub full_docs: bool,
pub pub_only: bool,
pub distro_crate: bool,
pub signatures: bool,
pub borrow_data: bool,
}Used to configure save-analysis.
Fields
output_file: Option<String>
File to output save-analysis data to.
full_docs: bool
Include all documentation for items. (If false, only includes the
summary (first paragraph) for each item).
pub_only: bool
If true only includes data for public items in a crate (useful for library crates).
distro_crate: bool
True if and only if the analysed crate is part of the standard Rust distro.
signatures: bool
Include signature information.
borrow_data: bool
Include experimental borrow data.
Trait Implementations
impl Debug for Config[src]
impl Clone for Config[src]
fn clone(&self) -> Config
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for Config[src]
impl Decodable for Config[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Config, __D::Error>
Deserialize a value using a Decoder.