File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 82
82
- run : docker compose up -d
83
83
- uses : sfackler/actions/rustup@master
84
84
with :
85
- version : 1.71 .0
85
+ version : 1.74 .0
86
86
- run : echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
87
87
id : rust-version
88
88
- uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ impl Row {
141
141
/// # Panics
142
142
///
143
143
/// Panics if the index is out of bounds or if the value cannot be converted to the specified type.
144
+ #[ track_caller]
144
145
pub fn get < ' a , I , T > ( & ' a self , idx : I ) -> T
145
146
where
146
147
I : RowIndex + fmt:: Display ,
@@ -239,6 +240,7 @@ impl SimpleQueryRow {
239
240
/// # Panics
240
241
///
241
242
/// Panics if the index is out of bounds or if the value cannot be converted to the specified type.
243
+ #[ track_caller]
242
244
pub fn get < I > ( & self , idx : I ) -> Option < & str >
243
245
where
244
246
I : RowIndex + fmt:: Display ,
You can’t perform that action at this time.
0 commit comments