vinted-rs 0.9.0

An async Vinted API wrapper
Documentation
1
2
3
4
5
6
pub fn display_option<T: std::fmt::Display>(value: Option<T>) -> String {
    match value {
        Some(value) => value.to_string(),
        None => "None".to_string(),
    }
}