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