[go: up one dir, main page]

fakeit 1.3.0

Fake data generator library with 130+ functions
Documentation
1
2
3
4
// url will generate a random Image Based Upon Height And Width. https://picsum.photos
pub fn url(width: i64, height: i64) -> String {
    format!("https://picsum.photos/{}/{}", width, height)
}