File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ struct Person {
24
24
id : i32 ,
25
25
name : ~str ,
26
26
time_created : Timespec ,
27
- data : Option <~[ u8 ] >
27
+ data : Option <Vec < u8 > >
28
28
}
29
29
30
30
fn main () {
@@ -215,7 +215,7 @@ types. The driver currently supports the following conversions:
215
215
<td>VARCHAR, CHAR(n), TEXT</td>
216
216
</tr>
217
217
<tr>
218
- <td>[u8]</td>
218
+ <td>[u8]/Vec<u8> </td>
219
219
<td>BYTEA</td>
220
220
</tr>
221
221
<tr>
@@ -247,7 +247,7 @@ types. The driver currently supports the following conversions:
247
247
<td>BOOL[], BOOL[][], ...</td>
248
248
</tr>
249
249
<tr>
250
- <td>types::array::ArrayBase<Option<~[u8] >></td>
250
+ <td>types::array::ArrayBase<Option<Vec<u8> >></td>
251
251
<td>BYTEA[], BYTEA[][], ...</td>
252
252
</tr>
253
253
<tr>
You can’t perform that action at this time.
0 commit comments