[][src]Struct ddbug::Options

pub struct Options<'a> {
    pub print_source: bool,
    pub print_file_address: bool,
    pub print_unit_address: bool,
    pub print_function_calls: bool,
    pub print_function_instructions: bool,
    pub print_function_variables: bool,
    pub print_function_stack_frame: bool,
    pub print_inlined_function_parameters: bool,
    pub print_variable_locations: bool,
    pub inline_depth: usize,
    pub html: bool,
    pub category_file: bool,
    pub category_unit: bool,
    pub category_type: bool,
    pub category_function: bool,
    pub category_variable: bool,
    pub filter_function_inline: Option<bool>,
    pub filter_name: Option<&'a str>,
    pub filter_namespace: Vec<&'a str>,
    pub filter_unit: Option<&'a str>,
    pub sort: Sort,
    pub ignore_added: bool,
    pub ignore_deleted: bool,
    pub ignore_function_address: bool,
    pub ignore_function_size: bool,
    pub ignore_function_inline: bool,
    pub ignore_function_symbol_name: bool,
    pub ignore_variable_address: bool,
    pub ignore_variable_symbol_name: bool,
    pub prefix_map: Vec<(&'a str, &'a str)>,
}

Fields

print_source: boolprint_file_address: boolprint_unit_address: boolprint_function_calls: boolprint_function_instructions: boolprint_function_variables: boolprint_function_stack_frame: boolprint_inlined_function_parameters: boolprint_variable_locations: boolinline_depth: usizehtml: boolcategory_file: boolcategory_unit: boolcategory_type: boolcategory_function: boolcategory_variable: boolfilter_function_inline: Option<bool>filter_name: Option<&'a str>filter_namespace: Vec<&'a str>filter_unit: Option<&'a str>sort: Sortignore_added: boolignore_deleted: boolignore_function_address: boolignore_function_size: boolignore_function_inline: boolignore_function_symbol_name: boolignore_variable_address: boolignore_variable_symbol_name: boolprefix_map: Vec<(&'a str, &'a str)>

Implementations

impl<'a> Options<'a>[src]

pub fn unit(&mut self, unit: &'a str) -> &mut Self[src]

pub fn name(&mut self, name: &'a str) -> &mut Self[src]

Trait Implementations

impl<'a> Clone for Options<'a>[src]

impl<'a> Debug for Options<'a>[src]

impl<'a> Default for Options<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Options<'a>[src]

impl<'a> Send for Options<'a>[src]

impl<'a> Sync for Options<'a>[src]

impl<'a> Unpin for Options<'a>[src]

impl<'a> UnwindSafe for Options<'a>[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.