Skip to content

Commit 86e4075

Browse files
committed
fix(macros.rs): fix use statements for trait impls
1 parent e7f7735 commit 86e4075

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/macros.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ macro_rules! simple_enum {
244244
$($v),+
245245
}
246246

247-
impl std::str::FromStr for $e {
247+
impl ::std::str::FromStr for $e {
248248
type Err = String;
249249

250250
fn from_str(s: &str) -> Result<Self,Self::Err> {
@@ -300,7 +300,7 @@ macro_rules! arg_enum {
300300
$($v),+
301301
}
302302

303-
impl std::str::FromStr for $e {
303+
impl ::std::str::FromStr for $e {
304304
type Err = String;
305305

306306
fn from_str(s: &str) -> Result<Self,Self::Err> {
@@ -321,7 +321,7 @@ macro_rules! arg_enum {
321321
$($v),+
322322
}
323323

324-
impl std::str::FromStr for $e {
324+
impl ::std::str::FromStr for $e {
325325
type Err = String;
326326

327327
fn from_str(s: &str) -> Result<Self,Self::Err> {
@@ -343,7 +343,7 @@ macro_rules! arg_enum {
343343
$($v),+
344344
}
345345

346-
impl std::str::FromStr for $e {
346+
impl ::std::str::FromStr for $e {
347347
type Err = String;
348348

349349
fn from_str(s: &str) -> Result<Self,Self::Err> {
@@ -365,7 +365,7 @@ macro_rules! arg_enum {
365365
$($v),+
366366
}
367367

368-
impl std::str::FromStr for $e {
368+
impl ::std::str::FromStr for $e {
369369
type Err = String;
370370

371371
fn from_str(s: &str) -> Result<Self,Self::Err> {

0 commit comments

Comments
 (0)