socorro_cli/models/mod.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5pub mod common;
6pub mod correlations;
7pub mod crash_pings;
8pub mod processed_crash;
9pub mod search;
10
11pub use common::*;
12pub use correlations::*;
13pub use processed_crash::{CrashInfo, CrashSummary, ProcessedCrash, Thread, ThreadSummary};
14pub use search::*;
15
16#[derive(Debug, Clone, Copy, PartialEq, Eq, clap::ValueEnum)]
17pub enum ModulesMode {
18 None,
19 Stack,
20 Full,
21}