diff options
author | 2025-02-09 06:40:48 +0100 | |
---|---|---|
committer | 2025-02-09 06:40:48 +0100 | |
commit | 17395e83201d1e5e00be46c1fb1d6fa18f3d87f1 (patch) | |
tree | 15950318f4e9969ee953fcc3eab9eac205722ed1 | |
parent | f3ae4266e9727940ba0d0e8469362923590916f4 (diff) | |
download | iced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.tar.gz iced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.tar.bz2 iced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.zip |
Use `to_owned` instead of `to_string` in `gallery` example
-rw-r--r-- | examples/gallery/src/civitai.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gallery/src/civitai.rs b/examples/gallery/src/civitai.rs index 457091e9..8e57db3d 100644 --- a/examples/gallery/src/civitai.rs +++ b/examples/gallery/src/civitai.rs @@ -71,7 +71,7 @@ impl Image { if part.starts_with("width=") { format!("width={width}") } else { - part.to_string() + part.to_owned() } }) .collect::<Vec<_>>() |