File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -492,7 +492,7 @@ cfg_if! {
492
492
. field( "salg_type" , & self . salg_type)
493
493
. field( "salg_feat" , & self . salg_feat)
494
494
. field( "salg_mask" , & self . salg_mask)
495
- // .field("salg_name", &self.salg_name)
495
+ . field( "salg_name" , && self . salg_name[ .. ] )
496
496
. finish( )
497
497
}
498
498
}
@@ -529,7 +529,7 @@ cfg_if! {
529
529
impl :: fmt:: Debug for af_alg_iv {
530
530
fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
531
531
f. debug_struct( "af_alg_iv" )
532
- // .field("iv", self.as_slice())
532
+ . field( "iv" , & self . as_slice( ) )
533
533
. finish( )
534
534
}
535
535
}
Original file line number Diff line number Diff line change @@ -711,7 +711,7 @@ cfg_if! {
711
711
. field( "salg_type" , & self . salg_type)
712
712
. field( "salg_feat" , & self . salg_feat)
713
713
. field( "salg_mask" , & self . salg_mask)
714
- // .field("salg_name", &self.salg_name)
714
+ . field( "salg_name" , && self . salg_name[ .. ] )
715
715
. finish( )
716
716
}
717
717
}
@@ -748,7 +748,7 @@ cfg_if! {
748
748
impl :: fmt:: Debug for af_alg_iv {
749
749
fn fmt( & self , f: & mut :: fmt:: Formatter ) -> :: fmt:: Result {
750
750
f. debug_struct( "af_alg_iv" )
751
- // .field("iv", self.as_slice())
751
+ . field( "iv" , & self . as_slice( ) )
752
752
. finish( )
753
753
}
754
754
}
You can’t perform that action at this time.
0 commit comments