Skip to content

Commit

Permalink
Merge pull request #115 from kevinglasson/master
Browse files Browse the repository at this point in the history
feat: remove 'static lifetime from NumberWithFormat
  • Loading branch information
cksac authored Jan 4, 2023
2 parents 1624509 + 30586d8 commit 060e2e2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ NameWithTitle();

```rust
Digit();
NumberWithFormat(fmt: &'static str);
NumberWithFormat<'a>(fmt: &'a str);
```

## Boolean
Expand Down
2 changes: 1 addition & 1 deletion fake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ NameWithTitle();

```rust
Digit();
NumberWithFormat(fmt: &'static str);
NumberWithFormat<'a>(fmt: &'a str);
```

## Boolean
Expand Down
6 changes: 6 additions & 0 deletions fake/examples/fakers.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use fake::faker::address::en::StreetName;
use fake::locales::{EN, FR_FR, ZH_CN, ZH_TW};
use fake::Fake;

Expand Down Expand Up @@ -267,6 +268,11 @@ fn number_faker() {

let val: String = NumberWithFormat(EN, "FLAT 0# ^#/F").fake();
println!("{:?}", val);

// non-'static string
let fmt = String::from("FLAT 0# ^#/F");
let val: String = NumberWithFormat(EN, &fmt).fake();
println!("{:?}", val);
}

fn phone_number_faker() {
Expand Down
2 changes: 1 addition & 1 deletion fake/src/faker/impls/number.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl<L: Data> Dummy<Digit<L>> for &str {
}
}

impl<L: Data> Dummy<NumberWithFormat<L>> for String {
impl<L: Data> Dummy<NumberWithFormat<'_, L>> for String {
fn dummy_with_rng<R: Rng + ?Sized>(c: &NumberWithFormat<L>, rng: &mut R) -> Self {
numerify_sym(c.1, rng)
}
Expand Down
18 changes: 9 additions & 9 deletions fake/src/faker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@ fn numerify_sym<R: Rng + ?Sized>(string: &str, rng: &mut R) -> String {
}

macro_rules! def_fakers {
(@m $locale_m:ident=>$locale_s:ident { $($name:ident($($arg:ident : $typ:ty),*);)+}) => {
(@m $locale_m:ident=>$locale_s:ident { $($name:ident$(< $($lts:lifetime),* >)?($($arg:ident : $typ:ty),*);)+}) => {
pub mod $locale_m {
use super::raw;
use crate::locales::$locale_s;
$(
#[inline]
#[allow(non_snake_case)]
pub fn $name($($arg:$typ),*) -> raw::$name<$locale_s> {
pub fn $name$(< $($lts),* >)?($($arg:$typ),*) -> raw::$name<$locale_s> {
raw::$name($locale_s, $($arg),*)
}
)+
}
};
($($name:ident($($arg:ident : $typ:ty),*);)+) => {
($($name:ident$(< $($lts:lifetime),* >)?($($arg:ident : $typ:ty),*);)+) => {
pub mod raw {
$(
pub struct $name<L>(pub L, $(pub $typ),*);
pub struct $name<$( $($lts),* , )?L>(pub L, $(pub $typ),*);
)+
}

def_fakers!(@m en=>EN {$($name($($arg:$typ),*);)+});
def_fakers!(@m fr_fr=>FR_FR {$($name($($arg:$typ),*);)+});
def_fakers!(@m zh_tw=>ZH_TW {$($name($($arg:$typ),*);)+});
def_fakers!(@m zh_cn=>ZH_CN {$($name($($arg:$typ),*);)+});
def_fakers!(@m en=>EN {$($name$(< $($lts),* >)?($($arg:$typ),*);)+});
def_fakers!(@m fr_fr=>FR_FR {$($name$(< $($lts),* >)?($($arg:$typ),*);)+});
def_fakers!(@m zh_tw=>ZH_TW {$($name$(< $($lts),* >)?($($arg:$typ),*);)+});
def_fakers!(@m zh_cn=>ZH_CN {$($name$(< $($lts),* >)?($($arg:$typ),*);)+});
};
}

Expand Down Expand Up @@ -200,7 +200,7 @@ pub mod name {
pub mod number {
def_fakers! {
Digit();
NumberWithFormat(fmt: &'static str);
NumberWithFormat<'a>(fmt: &'a str);
}
}

Expand Down

0 comments on commit 060e2e2

Please sign in to comment.