[][src]Struct diff2html::config::Diff2HtmlConfig

pub struct Diff2HtmlConfig {
    pub input: String,
    pub output: String,
    pub diff: String,
    pub style: String,
    pub synchronized_scroll: String,
    pub summary: String,
    pub matching: String,
    pub match_words_threshold: f64,
    pub matching_max_comparisons: usize,
    pub file: Option<String>,
    pub format: String,
    pub is_combined: bool,
    pub max_line_length_highlight: usize,
    pub word_by_word: bool,
    pub char_by_char: bool,
    pub trail: Option<Vec<String>>,
}

Fields

input: Stringoutput: Stringdiff: Stringstyle: Stringsynchronized_scroll: Stringsummary: Stringmatching: Stringmatch_words_threshold: f64matching_max_comparisons: usizefile: Option<String>format: Stringis_combined: boolmax_line_length_highlight: usizeword_by_word: boolchar_by_char: booltrail: Option<Vec<String>>

Trait Implementations

impl Clone for Diff2HtmlConfig[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Diff2HtmlConfig[src]

impl<'a> From<ArgMatches<'a>> for Diff2HtmlConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.