sway_core/language/
inline.rs

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