@@ -244,7 +244,7 @@ macro_rules! simple_enum {
244
244
$( $v) ,+
245
245
}
246
246
247
- impl std:: str :: FromStr for $e {
247
+ impl :: std:: str :: FromStr for $e {
248
248
type Err = String ;
249
249
250
250
fn from_str( s: & str ) -> Result <Self , Self :: Err > {
@@ -300,7 +300,7 @@ macro_rules! arg_enum {
300
300
$( $v) ,+
301
301
}
302
302
303
- impl std:: str :: FromStr for $e {
303
+ impl :: std:: str :: FromStr for $e {
304
304
type Err = String ;
305
305
306
306
fn from_str( s: & str ) -> Result <Self , Self :: Err > {
@@ -321,7 +321,7 @@ macro_rules! arg_enum {
321
321
$( $v) ,+
322
322
}
323
323
324
- impl std:: str :: FromStr for $e {
324
+ impl :: std:: str :: FromStr for $e {
325
325
type Err = String ;
326
326
327
327
fn from_str( s: & str ) -> Result <Self , Self :: Err > {
@@ -343,7 +343,7 @@ macro_rules! arg_enum {
343
343
$( $v) ,+
344
344
}
345
345
346
- impl std:: str :: FromStr for $e {
346
+ impl :: std:: str :: FromStr for $e {
347
347
type Err = String ;
348
348
349
349
fn from_str( s: & str ) -> Result <Self , Self :: Err > {
@@ -365,7 +365,7 @@ macro_rules! arg_enum {
365
365
$( $v) ,+
366
366
}
367
367
368
- impl std:: str :: FromStr for $e {
368
+ impl :: std:: str :: FromStr for $e {
369
369
type Err = String ;
370
370
371
371
fn from_str( s: & str ) -> Result <Self , Self :: Err > {
0 commit comments