mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-23 17:07:12 +03:00
30 lines
30 KiB
HTML
30 lines
30 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Create a new widget by implementing this trait. You can instantiate your widget by calling `Widget::new(Box::new(instance of your new widget))`, which gives you the usual style options."><meta name="keywords" content="rust, rustlang, rust-lang, WidgetImpl"><title>WidgetImpl in widgetry - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../SourceSerif4-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../FiraSans-Regular.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../FiraSans-Medium.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../SourceCodePro-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../SourceSerif4-Bold.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../SourceCodePro-Semibold.ttf.woff2"><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../ayu.css" disabled><link rel="stylesheet" type="text/css" href="../dark.css" disabled><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><script id="default-settings" ></script><script src="../storage.js"></script><script defer src="sidebar-items.js"></script><script defer src="../main.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="alternate icon" type="image/png" href="../favicon-16x16.png"><link rel="alternate icon" type="image/png" href="../favicon-32x32.png"><link rel="icon" type="image/svg+xml" href="../favicon.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle">☰</button><a class="sidebar-logo" href="../widgetry/index.html"><div class="logo-container"><img class="rust-logo" src="../rust-logo.svg" alt="logo"></div></a><h2 class="location"></h2></nav><nav class="sidebar"><a class="sidebar-logo" href="../widgetry/index.html"><div class="logo-container"><img class="rust-logo" src="../rust-logo.svg" alt="logo"></div></a><h2 class="location"><a href="#">WidgetImpl</a></h2><div class="sidebar-elems"><section><div class="block"><h3 class="sidebar-title"><a href="#required-methods">Required Methods</a></h3><ul><li><a href="#tymethod.draw">draw</a></li><li><a href="#tymethod.event">event</a></li><li><a href="#tymethod.get_dims">get_dims</a></li><li><a href="#tymethod.set_pos">set_pos</a></li></ul></div><div class="block"><h3 class="sidebar-title"><a href="#provided-methods">Provided Methods</a></h3><ul><li><a href="#method.can_restore">can_restore</a></li><li><a href="#method.restore">restore</a></li></ul></div><div class="block"><h3 class="sidebar-title"><a href="#implementations">Methods</a></h3><ul><li><a href="#method.downcast">downcast</a></li><li><a href="#method.downcast_mut">downcast_mut</a></li><li><a href="#method.downcast_rc">downcast_rc</a></li><li><a href="#method.downcast_ref">downcast_ref</a></li><li><a href="#method.is">is</a></li></ul></div><div class="block"><h3 class="sidebar-title"><a href="#implementors">Implementors</a></h3></div></section><h2 class="location"><a href="index.html">In widgetry</a></h2></div></nav><main><div class="width-limiter"><div class="sub-container"><a class="sub-logo-container" href="../widgetry/index.html"><img class="rust-logo" src="../rust-logo.svg" alt="logo"></a><nav class="sub"><form class="search-form"><div class="search-container"><span></span><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" title="help" tabindex="-1"><button type="button">?</button></div><div id="settings-menu" tabindex="-1"><a href="../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../wheel.svg"></a></div></div></form></nav></div><section id="main-content" class="content"><div class="main-heading"><h1 class="fqn"><span class="in-band">Trait <a href="index.html">widgetry</a>::<wbr><a class="trait" href="#">WidgetImpl</a><button id="copy-path" onclick="copy_path(this)" title="Copy item path to clipboard"><img src="../clipboard.svg" width="19" height="18" alt="Copy item path"></button></span></h1><span class="out-of-band"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#48-69">source</a> · <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class="inner">−</span>]</a></span></div><div class="docblock item-decl"><pre class="rust trait"><code>pub trait WidgetImpl: Downcast {
|
||
fn <a href="#tymethod.get_dims" class="fnname">get_dims</a>(&self) -> <a class="struct" href="screen_geom/struct.ScreenDims.html" title="struct widgetry::screen_geom::ScreenDims">ScreenDims</a>;
|
||
<span class="item-spacer"></span> fn <a href="#tymethod.set_pos" class="fnname">set_pos</a>(&mut self, top_left: <a class="struct" href="screen_geom/struct.ScreenPt.html" title="struct widgetry::screen_geom::ScreenPt">ScreenPt</a>);
|
||
<span class="item-spacer"></span> fn <a href="#tymethod.event" class="fnname">event</a>(&mut self, ctx: &mut <a class="struct" href="event_ctx/struct.EventCtx.html" title="struct widgetry::event_ctx::EventCtx">EventCtx</a><'_>, output: &mut <a class="struct" href="widgets/struct.WidgetOutput.html" title="struct widgetry::widgets::WidgetOutput">WidgetOutput</a>);
|
||
<span class="item-spacer"></span> fn <a href="#tymethod.draw" class="fnname">draw</a>(&self, g: &mut <a class="struct" href="drawing/struct.GfxCtx.html" title="struct widgetry::drawing::GfxCtx">GfxCtx</a><'_>);
|
||
|
||
fn <a href="#method.can_restore" class="fnname">can_restore</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a> { ... }
|
||
<span class="item-spacer"></span> fn <a href="#method.restore" class="fnname">restore</a>(&mut self, _: &mut <a class="struct" href="event_ctx/struct.EventCtx.html" title="struct widgetry::event_ctx::EventCtx">EventCtx</a><'_>, _prev: &dyn <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>) { ... }
|
||
}</code></pre></div><details class="rustdoc-toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Create a new widget by implementing this trait. You can instantiate your widget by calling
|
||
<code>Widget::new(Box::new(instance of your new widget))</code>, which gives you the usual style options.</p>
|
||
</div></details><h2 id="required-methods" class="small-section-header">Required Methods<a href="#required-methods" class="anchor"></a></h2><div class="methods"><details class="rustdoc-toggle" open><summary><div id="tymethod.get_dims" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#51">source</a></div><h4 class="code-header">fn <a href="#tymethod.get_dims" class="fnname">get_dims</a>(&self) -> <a class="struct" href="screen_geom/struct.ScreenDims.html" title="struct widgetry::screen_geom::ScreenDims">ScreenDims</a></h4></div></summary><div class="docblock"><p>What width and height does the widget occupy? If this changes, be sure to set
|
||
<code>redo_layout</code> to true in <code>event</code>.</p>
|
||
</div></details><details class="rustdoc-toggle" open><summary><div id="tymethod.set_pos" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#53">source</a></div><h4 class="code-header">fn <a href="#tymethod.set_pos" class="fnname">set_pos</a>(&mut self, top_left: <a class="struct" href="screen_geom/struct.ScreenPt.html" title="struct widgetry::screen_geom::ScreenPt">ScreenPt</a>)</h4></div></summary><div class="docblock"><p>Your widget’s top left corner should be here. Handle mouse events and draw appropriately.</p>
|
||
</div></details><details class="rustdoc-toggle" open><summary><div id="tymethod.event" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#56">source</a></div><h4 class="code-header">fn <a href="#tymethod.event" class="fnname">event</a>(&mut self, ctx: &mut <a class="struct" href="event_ctx/struct.EventCtx.html" title="struct widgetry::event_ctx::EventCtx">EventCtx</a><'_>, output: &mut <a class="struct" href="widgets/struct.WidgetOutput.html" title="struct widgetry::widgets::WidgetOutput">WidgetOutput</a>)</h4></div></summary><div class="docblock"><p>Your chance to react to an event. Any side effects outside of this widget are communicated
|
||
through the output.</p>
|
||
</div></details><details class="rustdoc-toggle" open><summary><div id="tymethod.draw" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#58">source</a></div><h4 class="code-header">fn <a href="#tymethod.draw" class="fnname">draw</a>(&self, g: &mut <a class="struct" href="drawing/struct.GfxCtx.html" title="struct widgetry::drawing::GfxCtx">GfxCtx</a><'_>)</h4></div></summary><div class="docblock"><p>Draw the widget. Be sure to draw relative to the top-left specified by <code>set_pos</code>.</p>
|
||
</div></details></div><h2 id="provided-methods" class="small-section-header">Provided Methods<a href="#provided-methods" class="anchor"></a></h2><div class="methods"><details class="rustdoc-toggle" open><summary><div id="method.can_restore" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#61-63">source</a></div><h4 class="code-header">fn <a href="#method.can_restore" class="fnname">can_restore</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></div></summary><div class="docblock"><p>If a new Panel is being created to replace an older one, all widgets have the chance to
|
||
preserve state from the previous version.</p>
|
||
</div></details><details class="rustdoc-toggle" open><summary><div id="method.restore" class="method has-srclink"><div class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#66-68">source</a></div><h4 class="code-header">fn <a href="#method.restore" class="fnname">restore</a>(&mut self, _: &mut <a class="struct" href="event_ctx/struct.EventCtx.html" title="struct widgetry::event_ctx::EventCtx">EventCtx</a><'_>, _prev: &dyn <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>)</h4></div></summary><div class="docblock"><p>Restore state from the previous version of this widget, with the same ID. Implementors must
|
||
downcast.</p>
|
||
</div></details></div><h2 id="implementations" class="small-section-header">Implementations<a href="#implementations" class="anchor"></a></h2><div id="implementations-list"><details class="rustdoc-toggle implementors-toggle" open><summary><section id="impl-dyn%20WidgetImpl" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><a href="#impl-dyn%20WidgetImpl" class="anchor"></a><h3 class="code-header in-band">impl dyn <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.is" class="method has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><h4 class="code-header">pub fn <a href="#method.is" class="fnname">is</a><__T: <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Returns true if the trait object wraps an object of type <code>__T</code>.</p>
|
||
</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.downcast" class="method has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><h4 class="code-header">pub fn <a href="#method.downcast" class="fnname">downcast</a><__T: <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>>(self: <a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><Self>) -> <a class="enum" href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><__T>, <a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><Self>></h4></section></summary><div class="docblock"><p>Returns a boxed object from a boxed trait object if the underlying object is of type
|
||
<code>__T</code>. Returns the original boxed trait if it isn’t.</p>
|
||
</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.downcast_rc" class="method has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><h4 class="code-header">pub fn <a href="#method.downcast_rc" class="fnname">downcast_rc</a><__T: <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>>(self: <a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a><Self>) -> <a class="enum" href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a><__T>, <a class="struct" href="https://doc.rust-lang.org/1.64.0/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a><Self>></h4></section></summary><div class="docblock"><p>Returns an <code>Rc</code>-ed object from an <code>Rc</code>-ed trait object if the underlying object is of
|
||
type <code>__T</code>. Returns the original <code>Rc</code>-ed trait if it isn’t.</p>
|
||
</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.downcast_ref" class="method has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><h4 class="code-header">pub fn <a href="#method.downcast_ref" class="fnname">downcast_ref</a><__T: <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>>(&self) -> <a class="enum" href="https://doc.rust-lang.org/1.64.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&</a>__T></h4></section></summary><div class="docblock"><p>Returns a reference to the object within the trait object if it is of type <code>__T</code>, or
|
||
<code>None</code> if it isn’t.</p>
|
||
</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.downcast_mut" class="method has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/mod.rs.html#125">source</a></span><h4 class="code-header">pub fn <a href="#method.downcast_mut" class="fnname">downcast_mut</a><__T: <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a>>(&mut self) -> <a class="enum" href="https://doc.rust-lang.org/1.64.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&mut </a>__T></h4></section></summary><div class="docblock"><p>Returns a mutable reference to the object within the trait object if it is of type
|
||
<code>__T</code>, or <code>None</code> if it isn’t.</p>
|
||
</div></details></div></details></div><h2 id="implementors" class="small-section-header">Implementors<a href="#implementors" class="anchor"></a></h2><div class="item-list" id="implementors-list"><section id="impl-WidgetImpl-for-Button" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/button.rs.html#83-142">source</a></span><a href="#impl-WidgetImpl-for-Button" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/button/struct.Button.html" title="struct widgetry::widgets::button::Button">Button</a></h3></section><section id="impl-WidgetImpl-for-CompareTimes" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/compare_times.rs.html#139-200">source</a></span><a href="#impl-WidgetImpl-for-CompareTimes" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/compare_times/struct.CompareTimes.html" title="struct widgetry::widgets::compare_times::CompareTimes">CompareTimes</a></h3></section><section id="impl-WidgetImpl-for-Container" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/containers.rs.html#35-73">source</a></span><a href="#impl-WidgetImpl-for-Container" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/containers/struct.Container.html" title="struct widgetry::widgets::containers::Container">Container</a></h3></section><section id="impl-WidgetImpl-for-Nothing" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/containers.rs.html#5-20">source</a></span><a href="#impl-WidgetImpl-for-Nothing" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/containers/struct.Nothing.html" title="struct widgetry::widgets::containers::Nothing">Nothing</a></h3></section><section id="impl-WidgetImpl-for-FanChart" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/fan_chart.rs.html#189-203">source</a></span><a href="#impl-WidgetImpl-for-FanChart" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/fan_chart/struct.FanChart.html" title="struct widgetry::widgets::fan_chart::FanChart">FanChart</a></h3></section><section id="impl-WidgetImpl-for-Filler" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/filler.rs.html#40-56">source</a></span><a href="#impl-WidgetImpl-for-Filler" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/filler/struct.Filler.html" title="struct widgetry::widgets::filler::Filler">Filler</a></h3></section><section id="impl-WidgetImpl-for-DeferDraw" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/just_draw.rs.html#146-162">source</a></span><a href="#impl-WidgetImpl-for-DeferDraw" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/just_draw/struct.DeferDraw.html" title="struct widgetry::widgets::just_draw::DeferDraw">DeferDraw</a></h3></section><section id="impl-WidgetImpl-for-DrawWithTooltips" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/just_draw.rs.html#77-125">source</a></span><a href="#impl-WidgetImpl-for-DrawWithTooltips" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/just_draw/struct.DrawWithTooltips.html" title="struct widgetry::widgets::just_draw::DrawWithTooltips">DrawWithTooltips</a></h3></section><section id="impl-WidgetImpl-for-JustDraw" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/just_draw.rs.html#26-40">source</a></span><a href="#impl-WidgetImpl-for-JustDraw" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/just_draw/struct.JustDraw.html" title="struct widgetry::widgets::just_draw::JustDraw">JustDraw</a></h3></section><section id="impl-WidgetImpl-for-ScatterPlot" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/scatter_plot.rs.html#186-200">source</a></span><a href="#impl-WidgetImpl-for-ScatterPlot" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/scatter_plot/struct.ScatterPlot.html" title="struct widgetry::widgets::scatter_plot::ScatterPlot">ScatterPlot</a></h3></section><section id="impl-WidgetImpl-for-Slider" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/slider.rs.html#307-332">source</a></span><a href="#impl-WidgetImpl-for-Slider" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/slider/struct.Slider.html" title="struct widgetry::widgets::slider::Slider">Slider</a></h3></section><section id="impl-WidgetImpl-for-TextBox" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/text_box.rs.html#97-174">source</a></span><a href="#impl-WidgetImpl-for-TextBox" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/text_box/struct.TextBox.html" title="struct widgetry::widgets::text_box::TextBox">TextBox</a></h3></section><section id="impl-WidgetImpl-for-Toggle" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/toggle.rs.html#262-286">source</a></span><a href="#impl-WidgetImpl-for-Toggle" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/toggle/struct.Toggle.html" title="struct widgetry::widgets::toggle::Toggle">Toggle</a></h3></section><section id="impl-WidgetImpl-for-PersistentSplit%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/persistent_split.rs.html#83-135">source</a></span><a href="#impl-WidgetImpl-for-PersistentSplit%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/persistent_split/struct.PersistentSplit.html" title="struct widgetry::widgets::persistent_split::PersistentSplit">PersistentSplit</a><T></h3></section><section id="impl-WidgetImpl-for-Autocomplete%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/autocomplete.rs.html#85-141">source</a></span><a href="#impl-WidgetImpl-for-Autocomplete%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/autocomplete/struct.Autocomplete.html" title="struct widgetry::widgets::autocomplete::Autocomplete">Autocomplete</a><T></h3></section><section id="impl-WidgetImpl-for-Dropdown%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/dropdown.rs.html#83-178">source</a></span><a href="#impl-WidgetImpl-for-Dropdown%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/dropdown/struct.Dropdown.html" title="struct widgetry::widgets::dropdown::Dropdown">Dropdown</a><T></h3></section><section id="impl-WidgetImpl-for-DragDrop%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/drag_drop.rs.html#254-361">source</a></span><a href="#impl-WidgetImpl-for-DragDrop%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> + <a class="trait" href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/drag_drop/struct.DragDrop.html" title="struct widgetry::widgets::drag_drop::DragDrop">DragDrop</a><T></h3></section><section id="impl-WidgetImpl-for-Spinner%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/spinner.rs.html#212-285">source</a></span><a href="#impl-WidgetImpl-for-Spinner%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static + <a class="trait" href="widgets/spinner/trait.SpinnerValue.html" title="trait widgetry::widgets::spinner::SpinnerValue">SpinnerValue</a>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/spinner/struct.Spinner.html" title="struct widgetry::widgets::spinner::Spinner">Spinner</a><T></h3></section><section id="impl-WidgetImpl-for-Menu%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/menu.rs.html#87-207">source</a></span><a href="#impl-WidgetImpl-for-Menu%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/menu/struct.Menu.html" title="struct widgetry::widgets::menu::Menu">Menu</a><T></h3></section><section id="impl-WidgetImpl-for-Stash%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/stash.rs.html#25-34">source</a></span><a href="#impl-WidgetImpl-for-Stash%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl<T: 'static> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/stash/struct.Stash.html" title="struct widgetry::widgets::stash::Stash">Stash</a><T></h3></section><section id="impl-WidgetImpl-for-LinePlot%3CX%2C%20Y%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../src/widgetry/widgets/line_plot.rs.html#234-295">source</a></span><a href="#impl-WidgetImpl-for-LinePlot%3CX%2C%20Y%3E" class="anchor"></a><h3 class="code-header in-band">impl<X: <a class="trait" href="widgets/plots/trait.Axis.html" title="trait widgetry::widgets::plots::Axis">Axis</a><X>, Y: <a class="trait" href="widgets/plots/trait.Axis.html" title="trait widgetry::widgets::plots::Axis">Axis</a><Y>> <a class="trait" href="widgets/trait.WidgetImpl.html" title="trait widgetry::widgets::WidgetImpl">WidgetImpl</a> for <a class="struct" href="widgets/line_plot/struct.LinePlot.html" title="struct widgetry::widgets::line_plot::LinePlot">LinePlot</a><X, Y></h3></section></div><script type="text/javascript" src="../implementors/widgetry/widgets/trait.WidgetImpl.js" data-ignore-extern-crates="" async></script></section></div></main><div id="rustdoc-vars" data-root-path="../" data-current-crate="widgetry" data-themes="ayu,dark,light" data-resource-suffix="" data-rustdoc-version="1.64.0 (a55dd71d5 2022-09-19)" ></div></body></html> |