Home
last modified time | relevance | path

Searched refs:InvalidColumnIndex (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/rusqlite/src/
Derror.rs55 InvalidColumnIndex(usize), enumerator
134 (Error::InvalidColumnIndex(i1), Error::InvalidColumnIndex(i2)) => i1 == i2, in eq()
240 Error::InvalidColumnIndex(i) => write!(f, "Invalid column index: {}", i), in fmt()
292 | Error::InvalidColumnIndex(_) in source()
Dcolumn.rs60 .ok_or(Error::InvalidColumnIndex(col)) in column_name()
Dlib.rs1629 Error::InvalidColumnIndex(_) => (), in test_query_and_then_fails()
1684 CustomError::Sqlite(Error::InvalidColumnIndex(_)) => (), in test_query_and_then_custom_error_fails()
1740 CustomError::Sqlite(Error::InvalidColumnIndex(_)) => (), in test_query_row_and_then_custom_error_fails()
Drow.rs360 Err(Error::InvalidColumnIndex(*self)) in idx()