sway_core/language/
trace.rs

1/// The trace of a function suggests to the compiler whether or not a function should be backtraced.
2#[derive(Clone, Debug, Copy, PartialEq, Eq, Hash)]
3pub enum Trace {
4    Always,
5    Never,
6}