summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-04 19:07:24 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-04 19:07:24 +0100
commit24cf355e96d8ae6432ca8972214c2c4f31d07b22 (patch)
tree2cd2c8d168bb2c628356767deb41be89f5d90876 /core
parent565599876172b3f56d86b119ae453b5bcd8949e1 (diff)
downloadiced-24cf355e96d8ae6432ca8972214c2c4f31d07b22.tar.gz
iced-24cf355e96d8ae6432ca8972214c2c4f31d07b22.tar.bz2
iced-24cf355e96d8ae6432ca8972214c2c4f31d07b22.zip
Fix documentation of `markdown` and `rich_text`
Diffstat (limited to 'core')
-rw-r--r--core/src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index c31a8da7..d5c221ac 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -84,3 +84,12 @@ pub use vector::Vector;
pub use widget::Widget;
pub use smol_str::SmolStr;
+
+/// A function that can _never_ be called.
+///
+/// This is useful to turn generic types into anything
+/// you want by coercing them into a type with no possible
+/// values.
+pub fn never<T>(never: std::convert::Infallible) -> T {
+ match never {}
+}