Skip to main content

luaur_analysis/enums/
normalization_result.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[repr(i32)]
3pub enum NormalizationResult {
4    // The operation returned true or succeeded.
5    True,
6    // The operation returned false or failed.
7    False,
8    // Resource limits were hit, invalidating all normalized types.
9    HitLimits,
10}