diff options
author | 2020-05-28 21:30:33 +0200 | |
---|---|---|
committer | 2020-05-28 21:30:33 +0200 | |
commit | 709ed1f3f7ad8cf67a176763e394aaae4e808e93 (patch) | |
tree | 61e5cb803b36b91bb1dfacb22e21276f41bccbce /native/src/lib.rs | |
parent | 16c1261d8265265bc618f03cccc11cddb1f70697 (diff) | |
download | iced-709ed1f3f7ad8cf67a176763e394aaae4e808e93.tar.gz iced-709ed1f3f7ad8cf67a176763e394aaae4e808e93.tar.bz2 iced-709ed1f3f7ad8cf67a176763e394aaae4e808e93.zip |
Fix `iced_native` mention of old `window::Backend`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index f9a8c477..b67ff2a1 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -9,14 +9,11 @@ //! - Event handling for all the built-in widgets //! - A renderer-agnostic API //! -//! To achieve this, it introduces a bunch of reusable interfaces: +//! To achieve this, it introduces a couple of reusable interfaces: //! //! - A [`Widget`] trait, which is used to implement new widgets: from layout //! requirements to event and drawing logic. //! - A bunch of `Renderer` traits, meant to keep the crate renderer-agnostic. -//! - A [`window::Backend`] trait, leveraging [`raw-window-handle`], which can be -//! implemented by graphical renderers that target _windows_. Window-based -//! shells (like [`iced_winit`]) can use this trait to stay renderer-agnostic. //! //! # Usage //! The strategy to use this crate depends on your particular use case. If you @@ -31,7 +28,6 @@ //! [`druid`]: https://github.com/xi-editor/druid //! [`raw-window-handle`]: https://github.com/rust-windowing/raw-window-handle //! [`Widget`]: widget/trait.Widget.html -//! [`window::Backend`]: window/trait.Backend.html //! [`UserInterface`]: struct.UserInterface.html //! [renderer]: renderer/index.html #![deny(missing_docs)] |