1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! All structure needed by RustHound-CE.
//!
//! Example in rust:
//!
//! ```rust
//! # use rusthound_ce::objects::user::User;
//! # use rusthound_ce::objects::group::Group;
//! # use rusthound_ce::objects::computer::Computer;
//! # use rusthound_ce::objects::ou::Ou;
//! # use rusthound_ce::objects::gpo::Gpo;
//! # use rusthound_ce::objects::domain::Domain;
//! # use rusthound_ce::objects::container::Container;
//!
//! let user = User::new();
//! let group = Group::new();
//! let computer = Computer::new();
//! let ou = Ou::new();
//! let gpo = Gpo::new();
//! let domain = Domain::new();
//! let container = Container::new();
//! ```
//!