ntdsextract2 1.2.2

Display contents of Active Directory database files (ntds.dit)
1
2
3
4
5
6
7
8
9
10
11
12
use getset::{Getters, Setters};

use super::OutputFormat;

#[derive(Getters, Setters, Default)]
#[getset(get="pub", set="pub")]
pub struct OutputOptions {
    flat_serialization: bool,
    display_all_attributes: bool,
    show_all_objects: bool,
    format: Option<OutputFormat>
}