File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -497,10 +497,10 @@ macro_rules! tlv_record_type {
497
497
char
498
498
} ;
499
499
( String ) => {
500
- :: util:: ser:: WithoutLength <String >
500
+ :: util:: ser:: WithoutLength <crate :: prelude :: String >
501
501
} ;
502
502
( Vec <$type: ty>) => {
503
- :: util:: ser:: WithoutLength <Vec <$type>>
503
+ :: util:: ser:: WithoutLength <crate :: prelude :: Vec <$type>>
504
504
} ;
505
505
( $type: ident$( <$gen: ident>) ?) => {
506
506
$type$( <$gen>) ?
@@ -524,10 +524,10 @@ macro_rules! tlv_record_ref_type {
524
524
char
525
525
} ;
526
526
( String ) => {
527
- :: util:: ser:: WithoutLength <& ' a String >
527
+ :: util:: ser:: WithoutLength <& ' a crate :: prelude :: String >
528
528
} ;
529
529
( Vec <$type: ty>) => {
530
- :: util:: ser:: WithoutLength <& ' a Vec <$type>>
530
+ :: util:: ser:: WithoutLength <& ' a crate :: prelude :: Vec <$type>>
531
531
} ;
532
532
( $type: ident$( <$gen: ident>) ?) => {
533
533
& ' a $type$( <$gen>) ?
You can’t perform that action at this time.
0 commit comments