pub type PhyCreateIfaceResult = Result<u16, i32>;
enum PhyCreateIfaceResult { Ok(u16), Err(i32), }
Contains the success value
Contains the error value