1#[allow(unused_imports, clippy::wildcard_imports)] 2use super::*; 3 4/// Int32 is an XDR Typedef defined as: 5/// 6/// ```text 7/// typedef int int32; 8/// ``` 9/// 10pub type Int32 = i32;