summaryrefslogtreecommitdiffstats
path: root/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-29 00:58:42 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-29 00:58:42 +0200
commit268a5f00171820ff1d3da7de03b5efab5e45c01d (patch)
treedec80ca85cd0edad458ab7bd24913f6a408a60e5 /src/widget.rs
parent51050fc45ce0e84e40ab801deefe35baf4ee3c2c (diff)
downloadiced-268a5f00171820ff1d3da7de03b5efab5e45c01d.tar.gz
iced-268a5f00171820ff1d3da7de03b5efab5e45c01d.tar.bz2
iced-268a5f00171820ff1d3da7de03b5efab5e45c01d.zip
Write documentation for `UserInterface`
Diffstat (limited to 'src/widget.rs')
-rw-r--r--src/widget.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/widget.rs b/src/widget.rs
index cd3ff7a2..ef5bd7b5 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -44,10 +44,6 @@ use crate::{Event, Hasher, Layout, MouseCursor, Node, Point};
/// If you want to build your own widgets, you will need to implement this
/// trait.
///
-/// Additionally, remember to also provide [`Into<Element>`] so your users can
-/// easily turn your [`Widget`] into a generic [`Element`].
-///
-/// [`Into<Element>`]: ../struct.Element.html
/// [`Widget`]: trait.Widget.html
/// [`Element`]: ../struct.Element.html
pub trait Widget<Message, Renderer>: std::fmt::Debug {