sway-core 0.71.0

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