mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-08-31 09:22:32 +00:00
4 lines
101 B
Rust
4 lines
101 B
Rust
pub fn transform_optional_string(s: Option<&str>) -> Option<String> {
|
|
s.map(|f| f.to_string())
|
|
}
|