Lines Matching refs:TryFromIntError
10 use std::num::TryFromIntError;
13 fn err() -> Result<u8, TryFromIntError> { in err()
18 fn err_suspicious_else() -> Result<u8, TryFromIntError> { in err_suspicious_else()
39 fn err_early_return() -> Result<u8, TryFromIntError> { in err_early_return()
60 async fn err_async(polls: usize) -> Result<u8, TryFromIntError> { in err_async() argument
94 fn err_mut(out: &mut u8) -> Result<(), TryFromIntError> { in err_mut() argument
115 async fn err_mut_async(polls: usize, out: &mut u8) -> Result<(), TryFromIntError> { in err_mut_async() argument
181 fn err_dbg() -> Result<u8, TryFromIntError> { in err_dbg()
262 fn err_info() -> Result<u8, TryFromIntError> { in err_info()
282 fn err_dbg_info() -> Result<u8, TryFromIntError> { in err_dbg_info()
311 fn err_warn_info() -> Result<u8, TryFromIntError> { in err_warn_info()