<!DOCTYPE html><htmllang="en"><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1.0"><metaname="generator"content="rustdoc"><metaname="description"content="Any data that should last the entire lifetime of the application should be stored in the struct implementing this trait."><metaname="keywords"content="rust, rustlang, rust-lang, SharedAppState"><title>SharedAppState in widgetry - Rust</title><linkrel="stylesheet"type="text/css"href="../normalize.css"><linkrel="stylesheet"type="text/css"href="../rustdoc.css"id="mainThemeStyle"><linkrel="stylesheet"type="text/css"href="../light.css"id="themeStyle"><linkrel="stylesheet"type="text/css"href="../dark.css"disabled><linkrel="stylesheet"type="text/css"href="../ayu.css"disabled><scriptid="default-settings"></script><scriptsrc="../storage.js"></script><scriptsrc="../crates.js"></script><noscript><linkrel="stylesheet"href="../noscript.css"></noscript><linkrel="icon"type="image/svg+xml"href="../favicon.svg">
<linkrel="alternate icon"type="image/png"href="../favicon-32x32.png"><styletype="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><bodyclass="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><navclass="sidebar"><divclass="sidebar-menu"role="button">☰</div><ahref='../widgetry/index.html'><divclass='logo-container rust-logo'><imgsrc='../rust-logo.png'alt='logo'></div></a><pclass="location">Trait SharedAppState</p><divclass="sidebar-elems"><divclass="block items"><aclass="sidebar-title"href="#provided-methods">Provided Methods</a><divclass="sidebar-links"><ahref="#method.before_event">before_event</a><ahref="#method.before_quit">before_quit</a><ahref="#method.draw_default">draw_default</a><ahref="#method.dump_before_abort">dump_before_abort</a><ahref="#method.free_memory">free_memory</a></div><aclass="sidebar-title"href="#implementors">Implementors</a></div><pclass="location"><ahref="index.html">widgetry</a></p><divid="sidebar-vars"data-name="SharedAppState"data-ty="trait"data-relpath=""></div><scriptdefersrc="sidebar-items.js"></script></div></nav><divclass="theme-picker"><buttonid="theme-picker"aria-label="Pick another theme!"aria-haspopup="menu"><imgsrc="../brush.svg"width="18"height="18"alt="Pick another theme!"></button><divid="theme-choices"role="menu"></div></div><navclass="sub"><formclass="search-form"><divclass="search-container"><div><selectid="crate-search"><optionvalue="All crates">All crates</option></select><inputclass="search-input"name="search"disabledautocomplete="off"spellcheck="false"placeholder="Click or press ‘S’ to search, ‘?’ for more options…"type="search"></div><buttontype="button"class="help-button">?</button>
</div><h3id="method.draw_default"class="method"><code>fn <ahref="#method.draw_default"class="fnname">draw_default</a>(&self, _: &mut <aclass="struct"href="drawing/struct.GfxCtx.html"title="struct widgetry::drawing::GfxCtx">GfxCtx</a><'_>)</code><aclass="srclink"href="../src/widgetry/app_state.rs.html#16"title="goto source code">[src]</a></h3><divclass="docblock"><p>When DrawBaselayer::DefaultDraw is called, run this.</p>
</div><h3id="method.dump_before_abort"class="method"><code>fn <ahref="#method.dump_before_abort"class="fnname">dump_before_abort</a>(&self, _: &<aclass="struct"href="canvas/struct.Canvas.html"title="struct widgetry::canvas::Canvas">Canvas</a>)</code><aclass="srclink"href="../src/widgetry/app_state.rs.html#19"title="goto source code">[src]</a></h3><divclass="docblock"><p>Will be called if <code>State::event</code> or <code>State::draw</code> panics.</p>
</div><h3id="method.before_quit"class="method"><code>fn <ahref="#method.before_quit"class="fnname">before_quit</a>(&self, _: &<aclass="struct"href="canvas/struct.Canvas.html"title="struct widgetry::canvas::Canvas">Canvas</a>)</code><aclass="srclink"href="../src/widgetry/app_state.rs.html#21"title="goto source code">[src]</a></h3><divclass="docblock"><p>Called before a normal exit, like window close</p>
</div><h3id="method.free_memory"class="method"><code>fn <ahref="#method.free_memory"class="fnname">free_memory</a>(&mut self)</code><aclass="srclink"href="../src/widgetry/app_state.rs.html#25"title="goto source code">[src]</a></h3><divclass="docblock"><p>If widgetry determines the video card is low on memory, this may be called. The application
should make its best effort to delete any unused Drawables.</p>