libcosmic/cosmic/widget/text_editor/struct.TextEditor.html

241 lines
116 KiB
HTML
Raw Permalink Normal View History

<!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="A multi-line text input."><title>TextEditor in cosmic::widget::text_editor - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Italic-81dc35de.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-MediumItalic-ccf7e434.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../../../static.files/rustdoc-aa0817cf.css"><meta name="rustdoc-vars" data-root-path="../../../" data-static-root-path="../../../static.files/" data-current-crate="cosmic" data-themes="" data-resource-suffix="" data-rustdoc-version="1.90.0-nightly (3048886e5 2025-07-30)" data-channel="nightly" data-search-js="search-fa3e91e5.js" data-settings-js="settings-5514c975.js" ><script src="../../../static.files/storage-68b7e25d.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../../static.files/main-eebb9057.js"></script><noscript><link rel="stylesheet" href="../../../static.files/noscript-32bb7600.css"></noscript><link rel="alternate icon" type="image/png" href="../../../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../../../static.files/favicon-044be391.svg"></head><body class="rustdoc struct"><!--[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" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../../cosmic/index.html">cosmic</a><span class="version">1.0.0</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">Text<wbr>Editor</a></h2><h3><a href="#">Sections</a></h3><ul class="block top-toc"><li><a href="#example" title="Example">Example</a></li></ul><h3><a href="#implementations">Methods</a></h3><ul class="block method"><li><a href="#method.class" title="class">class</a></li><li><a href="#method.font" title="font">font</a></li><li><a href="#method.height" title="height">height</a></li><li><a href="#method.highlight_with" title="highlight_with">highlight_with</a></li><li><a href="#method.id" title="id">id</a></li><li><a href="#method.key_binding" title="key_binding">key_binding</a></li><li><a href="#method.line_height" title="line_height">line_height</a></li><li><a href="#method.max_height" title="max_height">max_height</a></li><li><a href="#method.min_height" title="min_height">min_height</a></li><li><a href="#method.new" title="new">new</a></li><li><a href="#method.on_action" title="on_action">on_action</a></li><li><a href="#method.padding" title="padding">padding</a></li><li><a href="#method.placeholder" title="placeholder">placeholder</a></li><li><a href="#method.size" title="size">size</a></li><li><a href="#method.style" title="style">style</a></li><li><a href="#method.width" title="width">width</a></li><li><a href="#method.wrapping" title="wrapping">wrapping</a></li></ul><h3><a href="#trait-implementations">Trait Implementations</a></h3><ul class="block trait-implementation"><li><a href="#impl-From%3CTextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E%3E-for-Element%3C'a,+Message,+Theme,+Renderer%3E" title="From&#60;TextEditor&#60;&#39;a, Highlighter, Message, Theme, Renderer&#62;&#62;">From&#60;TextEditor&#60;&#39;a, Highlighter, Message, Theme, Renderer&#62;&#62;</a></li><li><a href="#impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextEditor%3C'_,+Highlighter,+Message,+Theme,+Renderer%3E" title="Widget&#60;Message, Theme, Renderer&#62;">Widget&#60
Highlighter: <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>,
Theme: <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>,
Renderer: <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>,</div>{ <span class="comment">/* private fields */</span> }</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A multi-line text input.</p>
<h2 id="example"><a class="doc-anchor" href="#example">§</a>Example</h2>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>iced::widget::text_editor;
<span class="kw">struct </span>State {
content: text_editor::Content,
}
<span class="attr">#[derive(Debug, Clone)]
</span><span class="kw">enum </span>Message {
Edit(text_editor::Action)
}
<span class="kw">fn </span>view(state: <span class="kw-2">&amp;</span>State) -&gt; Element&lt;<span class="lifetime">'_</span>, Message&gt; {
text_editor(<span class="kw-2">&amp;</span>state.content)
.placeholder(<span class="string">"Type something here..."</span>)
.on_action(Message::Edit)
.into()
}
<span class="kw">fn </span>update(state: <span class="kw-2">&amp;mut </span>State, message: Message) {
<span class="kw">match </span>message {
Message::Edit(action) =&gt; {
state.content.perform(action);
}
}
}</code></pre></div>
</div></details><h2 id="implementations" class="section-header">Implementations<a href="#implementations" class="anchor">§</a></h2><div id="implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-TextEditor%3C'a,+PlainText,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-TextEditor%3C'a,+PlainText,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Message, Theme, Renderer&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, <a class="struct" href="../../iced/daemon/program/graphics/core/text/highlighter/struct.PlainText.html" title="struct cosmic::iced::daemon::program::graphics::core::text::highlighter::PlainText">PlainText</a>, Message, Theme, Renderer&gt;<div class="where">where
Theme: <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>,
Renderer: <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.new" class="method"><h4 class="code-header">pub fn <a href="#method.new" class="fn">new</a>(
content: &amp;'a <a class="struct" href="struct.Content.html" title="struct cosmic::widget::text_editor::Content">Content</a>&lt;Renderer&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, <a class="struct" href="../../iced/daemon/program/graphics/core/text/highlighter/struct.PlainText.html" title="struct cosmic::iced::daemon::program::graphics::core::text::highlighter::PlainText">PlainText</a>, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Creates new <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a> with the given <a href="struct.Content.html" title="struct cosmic::widget::text_editor::Content"><code>Content</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.id" class="method"><h4 class="code-header">pub fn <a href="#method.id" class="fn">id</a>(
self,
id: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../struct.Id.html" title="struct cosmic::widget::Id">Id</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, <a class="struct" href="../../iced/daemon/program/graphics/core/text/highlighter/struct.PlainText.html" title="struct cosmic::iced::daemon::program::graphics::core::text::highlighter::PlainText">PlainText</a>, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the <a href="../struct.Id.html" title="struct cosmic::widget::Id"><code>Id</code></a> of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme, Renderer&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;<div class="where">where
Highlighter: <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>,
Theme: <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>,
Renderer: <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.placeholder" class="method"><h4 class="code-header">pub fn <a href="#method.placeholder" class="fn">placeholder</a>(
self,
placeholder: impl <a class="trait" href="../../iced/widget/text/trait.IntoFragment.html" title="trait cosmic::iced::widget::text::IntoFragment">IntoFragment</a>&lt;'a&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the placeholder of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.width" class="method"><h4 class="code-header">pub fn <a href="#method.width" class="fn">width</a>(
self,
width: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/struct.Pixels.html" title="struct cosmic::iced::Pixels">Pixels</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the width of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.height" class="method"><h4 class="code-header">pub fn <a href="#method.height" class="fn">height</a>(
self,
height: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../../iced/enum.Length.html" title="enum cosmic::iced::Length">Length</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the height of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.min_height" class="method"><h4 class="code-header">pub fn <a href="#method.min_height" class="fn">min_height</a>(
self,
min_height: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/struct.Pixels.html" title="struct cosmic::iced::Pixels">Pixels</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the minimum height of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.max_height" class="method"><h4 class="code-header">pub fn <a href="#method.max_height" class="fn">max_height</a>(
self,
max_height: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/struct.Pixels.html" title="struct cosmic::iced::Pixels">Pixels</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the maximum height of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.on_action" class="method"><h4 class="code-header">pub fn <a href="#method.on_action" class="fn">on_action</a>(
self,
on_edit: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.Fn.html" title="trait core::ops::function::Fn">Fn</a>(<a class="enum" href="enum.Action.html" title="enum cosmic::widget::text_editor::Action">Action</a>) -&gt; Message + 'a,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the message that should be produced when some action is performed in
the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
<p>If this method is not called, the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a> will be disabled.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.font" class="method"><h4 class="code-header">pub fn <a href="#method.font" class="fn">font</a>(
self,
font: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;&lt;Renderer as <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>&gt;::<a class="associatedtype" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html#associatedtype.Font" title="type cosmic::iced::daemon::program::graphics::core::text::Renderer::Font">Font</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the <a href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html#associatedtype.Font" title="associated type cosmic::iced::daemon::program::graphics::core::text::Renderer::Font"><code>Font</code></a> of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.size" class="method"><h4 class="code-header">pub fn <a href="#method.size" class="fn">size</a>(
self,
size: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/struct.Pixels.html" title="struct cosmic::iced::Pixels">Pixels</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the text size of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.line_height" class="method"><h4 class="code-header">pub fn <a href="#method.line_height" class="fn">line_height</a>(
self,
line_height: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../../iced/widget/text/enum.LineHeight.html" title="enum cosmic::iced::widget::text::LineHeight">LineHeight</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the <a href="../../iced/widget/text/enum.LineHeight.html" title="enum cosmic::iced::widget::text::LineHeight"><code>text::LineHeight</code></a> of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.padding" class="method"><h4 class="code-header">pub fn <a href="#method.padding" class="fn">padding</a>(
self,
padding: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/struct.Padding.html" title="struct cosmic::iced::Padding">Padding</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the <a href="../../iced/struct.Padding.html" title="struct cosmic::iced::Padding"><code>Padding</code></a> of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.wrapping" class="method"><h4 class="code-header">pub fn <a href="#method.wrapping" class="fn">wrapping</a>(
self,
wrapping: <a class="enum" href="../../iced/widget/text/enum.Wrapping.html" title="enum cosmic::iced::widget::text::Wrapping">Wrapping</a>,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the <a href="../../iced/widget/text/enum.Wrapping.html" title="enum cosmic::iced::widget::text::Wrapping"><code>Wrapping</code></a> strategy of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.highlight_with" class="method"><h4 class="code-header">pub fn <a href="#method.highlight_with" class="fn">highlight_with</a>&lt;H&gt;(
self,
settings: &lt;H as <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>&gt;::<a class="associatedtype" href="../../iced/widget/text/trait.Highlighter.html#associatedtype.Settings" title="type cosmic::iced::widget::text::Highlighter::Settings">Settings</a>,
to_format: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(&amp;&lt;H as <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>&gt;::<a class="associatedtype" href="../../iced/widget/text/trait.Highlighter.html#associatedtype.Highlight" title="type cosmic::iced::widget::text::Highlighter::Highlight">Highlight</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Theme</a>) -&gt; <a class="struct" href="../../iced/daemon/program/graphics/core/text/highlighter/struct.Format.html" title="struct cosmic::iced::daemon::program::graphics::core::text::highlighter::Format">Format</a>&lt;&lt;Renderer as <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>&gt;::<a class="associatedtype" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html#associatedtype.Font" title="type cosmic::iced::daemon::program::graphics::core::text::Renderer::Font">Font</a>&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, H, Message, Theme, Renderer&gt;<div class="where">where
H: <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>,</div></h4></section></summary><div class="docblock"><p>Highlights the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a> with the given <a href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter"><code>Highlighter</code></a> and
a strategy to turn its highlights into some text format.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.key_binding" class="method"><h4 class="code-header">pub fn <a href="#method.key_binding" class="fn">key_binding</a>(
self,
key_binding: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.Fn.html" title="trait core::ops::function::Fn">Fn</a>(<a class="struct" href="struct.KeyPress.html" title="struct cosmic::widget::text_editor::KeyPress">KeyPress</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="enum" href="enum.Binding.html" title="enum cosmic::widget::text_editor::Binding">Binding</a>&lt;Message&gt;&gt; + 'a,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the closure to produce key bindings on key presses.</p>
<p>See <a href="enum.Binding.html" title="enum cosmic::widget::text_editor::Binding"><code>Binding</code></a> for the list of available bindings.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.style" class="method"><h4 class="code-header">pub fn <a href="#method.style" class="fn">style</a>(
self,
style: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.Fn.html" title="trait core::ops::function::Fn">Fn</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Theme</a>, <a class="enum" href="enum.Status.html" title="enum cosmic::widget::text_editor::Status">Status</a>) -&gt; <a class="struct" href="struct.Style.html" title="struct cosmic::widget::text_editor::Style">Style</a> + 'a,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;<div class="where">where
&lt;Theme as <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>&gt;::<a class="associatedtype" href="trait.Catalog.html#associatedtype.Class" title="type cosmic::widget::text_editor::Catalog::Class">Class</a>&lt;'a&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/boxed/struct.Box.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::boxed::Box">Box</a>&lt;dyn <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.Fn.html" title="trait core::ops::function::Fn">Fn</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Theme</a>, <a class="enum" href="enum.Status.html" title="enum cosmic::widget::text_editor::Status">Status</a>) -&gt; <a class="struct" href="struct.Style.html" title="struct cosmic::widget::text_editor::Style">Style</a> + 'a&gt;&gt;,</div></h4></section></summary><div class="docblock"><p>Sets the style of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.class" class="method"><h4 class="code-header">pub fn <a href="#method.class" class="fn">class</a>(
self,
class: impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;&lt;Theme as <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>&gt;::<a class="associatedtype" href="trait.Catalog.html#associatedtype.Class" title="type cosmic::widget::text_editor::Catalog::Class">Class</a>&lt;'a&gt;&gt;,
) -&gt; <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h4></section></summary><div class="docblock"><p>Sets the style class of the <a href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor"><code>TextEditor</code></a>.</p>
</div></details></div></details></div><h2 id="trait-implementations" class="section-header">Trait Implementations<a href="#trait-implementations" class="anchor">§</a></h2><div id="trait-implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-From%3CTextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E%3E-for-Element%3C'a,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-From%3CTextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E%3E-for-Element%3C'a,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme, Renderer&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;&gt; for <a class="struct" href="../../iced/daemon/program/graphics/core/struct.Element.html" title="struct cosmic::iced::daemon::program::graphics::core::Element">Element</a>&lt;'a, Message, Theme, Renderer&gt;<div class="where">where
Highlighter: <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>,
Message: 'a,
Theme: <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a> + 'a,
Renderer: <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from" class="method trait-impl"><a href="#method.from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(
text_editor: <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;,
) -&gt; <a class="struct" href="../../iced/daemon/program/graphics/core/struct.Element.html" title="struct cosmic::iced::daemon::program::graphics::core::Element">Element</a>&lt;'a, Message, Theme, Renderer&gt;</h4></section></summary><div class='docblock'>Converts to this type from the input type.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextEditor%3C'_,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextEditor%3C'_,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;Highlighter, Message, Theme, Renderer&gt; <a class="trait" href="../trait.Widget.html" title="trait cosmic::widget::Widget">Widget</a>&lt;Message, Theme, Renderer&gt; for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'_, Highlighter, Message, Theme, Renderer&gt;<div class="where">where
Highlighter: <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>,
Theme: <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>,
Renderer: <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.tag" class="method trait-impl"><a href="#method.tag" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.tag" class="fn">tag</a>(&amp;self) -&gt; <a class="struct" href="../../iced/daemon/program/graphics/core/widget/tree/struct.Tag.html" title="struct cosmic::iced::daemon::program::graphics::core::widget::tree::Tag">Tag</a></h4></section></summary><div class='docblock'>Returns the <a href="../../iced/daemon/program/graphics/core/widget/tree/struct.Tag.html" title="struct cosmic::iced::daemon::program::graphics::core::widget::tree::Tag"><code>Tag</code></a> of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.state" class="method trait-impl"><a href="#method.state" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.state" class="fn">state</a>(&amp;self) -&gt; <a class="enum" href="../../iced/daemon/program/graphics/core/widget/tree/enum.State.html" title="enum cosmic::iced::daemon::program::graphics::core::widget::tree::State">State</a></h4></section></summary><div class='docblock'>Returns the <a href="../../iced/daemon/program/graphics/core/widget/tree/enum.State.html" title="enum cosmic::iced::daemon::program::graphics::core::widget::tree::State"><code>State</code></a> of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.size-1" class="method trait-impl"><a href="#method.size-1" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#tymethod.size" class="fn">size</a>(&amp;self) -&gt; <a class="struct" href="../../iced/struct.Size.html" title="struct cosmic::iced::Size">Size</a>&lt;<a class="enum" href="../../iced/enum.Length.html" title="enum cosmic::iced::Length">Length</a>&gt;</h4></section></summary><div class='docblock'>Returns the <a href="../../iced/struct.Size.html" title="struct cosmic::iced::Size"><code>Size</code></a> of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a> in lengths.</div></details><details class="toggle method-toggle" open><summary><section id="method.layout" class="method trait-impl"><a href="#method.layout" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#tymethod.layout" class="fn">layout</a>(
&amp;mut self,
tree: &amp;mut <a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
limits: &amp;<a class="struct" href="../../iced/struct.Limits.html" title="struct cosmic::iced::Limits">Limits</a>,
) -&gt; <a class="struct" href="../../iced/daemon/program/graphics/core/layout/struct.Node.html" title="struct cosmic::iced::daemon::program::graphics::core::layout::Node">Node</a></h4></section></summary><div class='docblock'>Returns the <a href="../../iced/daemon/program/graphics/core/layout/struct.Node.html" title="struct cosmic::iced::daemon::program::graphics::core::layout::Node"><code>layout::Node</code></a> of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>. <a href="../trait.Widget.html#tymethod.layout">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.update" class="method trait-impl"><a href="#method.update" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.update" class="fn">update</a>(
&amp;mut self,
tree: &amp;mut <a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
event: &amp;<a class="enum" href="../../iced/enum.Event.html" title="enum cosmic::iced::Event">Event</a>,
layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
cursor: <a class="enum" href="../../iced/mouse/enum.Cursor.html" title="enum cosmic::iced::mouse::Cursor">Cursor</a>,
renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
clipboard: &amp;mut dyn <a class="trait" href="../../iced/advanced/trait.Clipboard.html" title="trait cosmic::iced::advanced::Clipboard">Clipboard</a>,
shell: &amp;mut <a class="struct" href="../../iced/advanced/struct.Shell.html" title="struct cosmic::iced::advanced::Shell">Shell</a>&lt;'_, Message&gt;,
_viewport: &amp;<a class="struct" href="../../iced/struct.Rectangle.html" title="struct cosmic::iced::Rectangle">Rectangle</a>,
)</h4></section></summary><div class='docblock'>Processes a runtime <a href="../../iced/enum.Event.html" title="enum cosmic::iced::Event"><code>Event</code></a>. <a href="../trait.Widget.html#method.update">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.draw" class="method trait-impl"><a href="#method.draw" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#tymethod.draw" class="fn">draw</a>(
&amp;self,
tree: &amp;<a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut Renderer</a>,
theme: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Theme</a>,
_defaults: &amp;<a class="struct" href="../../iced/daemon/program/graphics/core/renderer/struct.Style.html" title="struct cosmic::iced::daemon::program::graphics::core::renderer::Style">Style</a>,
layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
_cursor: <a class="enum" href="../../iced/mouse/enum.Cursor.html" title="enum cosmic::iced::mouse::Cursor">Cursor</a>,
_viewport: &amp;<a class="struct" href="../../iced/struct.Rectangle.html" title="struct cosmic::iced::Rectangle">Rectangle</a>,
)</h4></section></summary><div class='docblock'>Draws the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a> using the associated <code>Renderer</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.mouse_interaction" class="method trait-impl"><a href="#method.mouse_interaction" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.mouse_interaction" class="fn">mouse_interaction</a>(
&amp;self,
_tree: &amp;<a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
cursor: <a class="enum" href="../../iced/mouse/enum.Cursor.html" title="enum cosmic::iced::mouse::Cursor">Cursor</a>,
_viewport: &amp;<a class="struct" href="../../iced/struct.Rectangle.html" title="struct cosmic::iced::Rectangle">Rectangle</a>,
_renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
) -&gt; <a class="enum" href="../../iced/mouse/enum.Interaction.html" title="enum cosmic::iced::mouse::Interaction">Interaction</a></h4></section></summary><div class='docblock'>Returns the current <a href="../../iced/mouse/enum.Interaction.html" title="enum cosmic::iced::mouse::Interaction"><code>mouse::Interaction</code></a> of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>. <a href="../trait.Widget.html#method.mouse_interaction">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.operate" class="method trait-impl"><a href="#method.operate" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.operate" class="fn">operate</a>(
&amp;mut self,
tree: &amp;mut <a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
_renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
operation: &amp;mut dyn <a class="trait" href="../trait.Operation.html" title="trait cosmic::widget::Operation">Operation</a>,
)</h4></section></summary><div class='docblock'>Applies an <a href="../trait.Operation.html" title="trait cosmic::widget::Operation"><code>Operation</code></a> to the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.id-1" class="method trait-impl"><a href="#method.id-1" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.id" class="fn">id</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.Id.html" title="struct cosmic::widget::Id">Id</a>&gt;</h4></section></summary><div class='docblock'>Returns the id of the widget</div></details><details class="toggle method-toggle" open><summary><section id="method.set_id" class="method trait-impl"><a href="#method.set_id" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.set_id" class="fn">set_id</a>(&amp;mut self, id: <a class="struct" href="../struct.Id.html" title="struct cosmic::widget::Id">Id</a>)</h4></section></summary><div class='docblock'>Sets the id of the widget
This may be called while diffing the widget tree</div></details><details class="toggle method-toggle" open><summary><section id="method.size_hint" class="method trait-impl"><a href="#method.size_hint" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.size_hint" class="fn">size_hint</a>(&amp;self) -&gt; <a class="struct" href="../../iced/struct.Size.html" title="struct cosmic::iced::Size">Size</a>&lt;<a class="enum" href="../../iced/enum.Length.html" title="enum cosmic::iced::Length">Length</a>&gt;</h4></section></summary><div class='docblock'>Returns a <a href="../../iced/struct.Size.html" title="struct cosmic::iced::Size"><code>Size</code></a> hint for laying out the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>. <a href="../trait.Widget.html#method.size_hint">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.children" class="method trait-impl"><a href="#method.children" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.children" class="fn">children</a>(&amp;self) -&gt; <a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/vec/struct.Vec.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::vec::Vec">Vec</a>&lt;<a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>&gt;</h4></section></summary><div class='docblock'>Returns the state <a href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree"><code>Tree</code></a> of the children of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.diff" class="method trait-impl"><a href="#method.diff" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.diff" class="fn">diff</a>(&amp;mut self, tree: &amp;mut <a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>)</h4></section></summary><div class='docblock'>Reconciles the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a> with the provided <a href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree"><code>Tree</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.overlay" class="method trait-impl"><a href="#method.overlay" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.overlay" class="fn">overlay</a>&lt;'a&gt;(
&amp;'a mut self,
_tree: &amp;'a mut <a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
_layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'a&gt;,
_renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
_viewport: &amp;<a class="struct" href="../../iced/struct.Rectangle.html" title="struct cosmic::iced::Rectangle">Rectangle</a>,
_translation: <a class="struct" href="../../iced/struct.Vector.html" title="struct cosmic::iced::Vector">Vector</a>,
) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../iced/daemon/program/graphics/core/overlay/struct.Element.html" title="struct cosmic::iced::daemon::program::graphics::core::overlay::Element">Element</a>&lt;'a, Message, Theme, Renderer&gt;&gt;</h4></section></summary><div class='docblock'>Returns the overlay of the <a href="../trait.Widget.html" title="trait cosmic::widget::Widget"><code>Widget</code></a>, if there is any.</div></details><details class="toggle method-toggle" open><summary><section id="method.a11y_nodes" class="method trait-impl"><a href="#method.a11y_nodes" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.a11y_nodes" class="fn">a11y_nodes</a>(
&amp;self,
_layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
_state: &amp;<a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
_cursor: <a class="enum" href="../../iced/mouse/enum.Cursor.html" title="enum cosmic::iced::mouse::Cursor">Cursor</a>,
) -&gt; A11yTree</h4></section></summary><div class='docblock'>get the a11y nodes for the widget and its children</div></details><details class="toggle method-toggle" open><summary><section id="method.drag_destinations" class="method trait-impl"><a href="#method.drag_destinations" class="anchor">§</a><h4 class="code-header">fn <a href="../trait.Widget.html#method.drag_destinations" class="fn">drag_destinations</a>(
&amp;self,
_state: &amp;<a class="struct" href="../../iced/advanced/widget/struct.Tree.html" title="struct cosmic::iced::advanced::widget::Tree">Tree</a>,
_layout: <a class="struct" href="../../iced/advanced/struct.Layout.html" title="struct cosmic::iced::advanced::Layout">Layout</a>&lt;'_&gt;,
_renderer: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;Renderer</a>,
_dnd_rectangles: &amp;mut <a class="struct" href="../../iced/daemon/program/graphics/core/clipboard/struct.DndDestinationRectangles.html" title="struct cosmic::iced::daemon::program::graphics::core::clipboard::DndDestinationRectangles">DndDestinationRectangles</a>,
)</h4></section></summary><div class='docblock'>Adds the drag destination rectangles of the widget.
Runs after the layout phase for each widget in the tree.</div></details></div></details></div><h2 id="synthetic-implementations" class="section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor">§</a></h2><div id="synthetic-implementations-list"><section id="impl-Freeze-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-Freeze-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme, Renderer&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;<div class="where">where
&lt;Theme as <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>&gt;::<a class="associatedtype" href="trait.Catalog.html#associatedtype.Class" title="type cosmic::widget::text_editor::Catalog::Class">Class</a>&lt;'a&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a>,
&lt;Highlighter as <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>&gt;::<a class="associatedtype" href="../../iced/widget/text/trait.Highlighter.html#associatedtype.Settings" title="type cosmic::iced::widget::text::Highlighter::Settings">Settings</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a>,
&lt;Renderer as <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>&gt;::<a class="associatedtype" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html#associatedtype.Font" title="type cosmic::iced::daemon::program::graphics::core::text::Renderer::Font">Font</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a>,</div></h3></section><section id="impl-RefUnwindSafe-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-RefUnwindSafe-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme = <a class="enum" href="../../iced/enum.Theme.html" title="enum cosmic::iced::Theme">Theme</a>, Renderer = Renderer&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h3></section><section id="impl-Send-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-Send-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme = <a class="enum" href="../../iced/enum.Theme.html" title="enum cosmic::iced::Theme">Theme</a>, Renderer = Renderer&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h3></section><section id="impl-Sync-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-Sync-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme = <a class="enum" href="../../iced/enum.Theme.html" title="enum cosmic::iced::Theme">Theme</a>, Renderer = Renderer&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h3></section><section id="impl-Unpin-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-Unpin-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme, Renderer&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;<div class="where">where
&lt;Theme as <a class="trait" href="trait.Catalog.html" title="trait cosmic::widget::text_editor::Catalog">Catalog</a>&gt;::<a class="associatedtype" href="trait.Catalog.html#associatedtype.Class" title="type cosmic::widget::text_editor::Catalog::Class">Class</a>&lt;'a&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,
&lt;Highlighter as <a class="trait" href="../../iced/widget/text/trait.Highlighter.html" title="trait cosmic::iced::widget::text::Highlighter">Highlighter</a>&gt;::<a class="associatedtype" href="../../iced/widget/text/trait.Highlighter.html#associatedtype.Settings" title="type cosmic::iced::widget::text::Highlighter::Settings">Settings</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,
&lt;Renderer as <a class="trait" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html" title="trait cosmic::iced::daemon::program::graphics::core::text::Renderer">Renderer</a>&gt;::<a class="associatedtype" href="../../iced/daemon/program/graphics/core/text/trait.Renderer.html#associatedtype.Font" title="type cosmic::iced::daemon::program::graphics::core::text::Renderer::Font">Font</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,</div></h3></section><section id="impl-UnwindSafe-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="impl"><a href="#impl-UnwindSafe-for-TextEditor%3C'a,+Highlighter,+Message,+Theme,+Renderer%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Highlighter, Message, Theme = <a class="enum" href="../../iced/enum.Theme.html" title="enum cosmic::iced::Theme">Theme</a>, Renderer = Renderer&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core::panic::unwind_safe::UnwindSafe">UnwindSafe</a> for <a class="struct" href="../struct.TextEditor.html" title="struct cosmic::widget::TextEditor">TextEditor</a>&lt;'a, Highlighter, Message, Theme, Renderer&gt;</h3></section></div><h2 id="blanket-implementations" class="section-header">Blanket Implementations<a href="#blanket-implementations" class="anchor">§</a></h2><div id="blanket-implementations-list"><details class="toggle implementors-toggle"><summary><section id="impl-AdaptInto%3CD,+Swp,+Dwp,+T%3E-for-S" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/chromatic_adaptation.rs.html#205-210">Source</a><a href="#impl-AdaptInto%3CD,+Swp,+Dwp,+T%3E-for-S" class="anchor">§</a><h3 class="code-header">impl&lt;S, D, Swp, Dwp, T&gt; <a class="trait" href="../../cosmic_theme/palette/chromatic_adaptation/trait.AdaptInto.html" title="trait cosmic::cosmic_theme::palette::chromatic_adaptation::AdaptInto">AdaptInto</a>&lt;D, Swp, Dwp, T&gt; for S<div class="where">where
T: <a class="trait" href="../../cosmic_theme/palette/num/trait.Real.html" title="trait cosmic::cosmic_theme::palette::num::Real">Real</a> + <a class="trait" href="../../cosmic_theme/palette/num/trait.Zero.html" title="trait cosmic::cosmic_theme::palette::num::Zero">Zero</a> + <a class="trait" href="../../cosmic_theme/palette/num/trait.Arithmetics.html" title="trait cosmic::cosmic_theme::palette::num::Arithmetics">Arithmetics</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,
Swp: <a class="trait" href="../../cosmic_theme/palette/white_point/trait.WhitePoint.html" title="trait cosmic::cosmic_theme::palette::white_point::WhitePoint">WhitePoint</a>&lt;T&gt;,
Dwp: <a class="trait" href="../../cosmic_theme/palette/white_point/trait.WhitePoint.html" title="trait cosmic::cosmic_theme::palette::white_point::WhitePoint">WhitePoint</a>&lt;T&gt;,
D: <a class="trait" href="../../cosmic_theme/palette/chromatic_adaptation/trait.AdaptFrom.html" title="trait cosmic::cosmic_theme::palette::chromatic_adaptation::AdaptFrom">AdaptFrom</a>&lt;S, Swp, Dwp, T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.adapt_into_using" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/chromatic_adaptation.rs.html#213">Source</a><a href="#method.adapt_into_using" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/chromatic_adaptation/trait.AdaptInto.html#tymethod.adapt_into_using" class="fn">adapt_into_using</a>&lt;M&gt;(self, method: M) -&gt; D<div class="where">where
M: <a class="trait" href="../../cosmic_theme/palette/chromatic_adaptation/trait.TransformMatrix.html" title="trait cosmic::cosmic_theme::palette::chromatic_adaptation::TransformMatrix">TransformMatrix</a>&lt;T&gt;,</div></h4></section></summary><div class='docblock'>Convert the source color to the destination color using the specified
method.</div></details><details class="toggle method-toggle" open><summary><section id="method.adapt_into" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/chromatic_adaptation.rs.html#196">Source</a><a href="#method.adapt_into" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/chromatic_adaptation/trait.AdaptInto.html#method.adapt_into" class="fn">adapt_into</a>(self) -&gt; D</h4></section></summary><div class='docblock'>Convert the source color to the destination color using the bradford
method by default.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Also-for-T" class="impl"><a href="#impl-Also-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../trait.Also.html" title="trait cosmic::Also">Also</a> for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.also" class="method trait-impl"><a href="#method.also" class="anchor">§</a><h4 class="code-header">fn <a href="../../trait.Also.html#method.also" class="fn">also</a>&lt;F&gt;(self, block: F) -&gt; Self<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(&amp;mut Self),</div></h4></section></summary><div class='docblock'>Apply a function to this value and return the (possibly) modified value.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Any-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/any.rs.html#138">Source</a><a href="#impl-Any-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T<div class="where">where
T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.type_id" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/any.rs.html#139">Source</a><a href="#method.type_id" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id" class="fn">type_id</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></h4></section></summary><div class='docblock'>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Apply%3CRes%3E-for-T" class="impl"><a href="#impl-Apply%3CRes%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, Res&gt; <a class="trait" href="../../trait.Apply.html" title="trait cosmic::Apply">Apply</a>&lt;Res&gt; for T<div class="where">where
T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.apply" class="method trait-impl"><a href="#method.apply" class="anchor">§</a><h4 class="code-header">fn <a href="../../trait.Apply.html#method.apply" class="fn">apply</a>&lt;F&gt;(self, f: F) -&gt; Res<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(Self) -&gt; Res,
Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Apply a function which takes the parameter by value.</div></details><details class="toggle method-toggle" open><summary><section id="method.apply_ref" class="method trait-impl"><a href="#method.apply_ref" class="anchor">§</a><h4 class="code-header">fn <a href="../../trait.Apply.html#method.apply_ref" class="fn">apply_ref</a>&lt;F&gt;(&amp;self, f: F) -&gt; Res<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(&amp;Self) -&gt; Res,</div></h4></section></summary><div class='docblock'>Apply a function which takes the parameter by reference.</div></details><details class="toggle method-toggle" open><summary><section id="method.apply_mut" class="method trait-impl"><a href="#method.apply_mut" class="anchor">§</a><h4 class="code-header">fn <a href="../../trait.Apply.html#method.apply_mut" class="fn">apply_mut</a>&lt;F&gt;(&amp;mut self, f: F) -&gt; Res<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(&amp;mut Self) -&gt; Res,</div></h4></section></summary><div class='docblock'>Apply a function which takes the parameter by mutable reference.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ArraysFrom%3CC%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_arrays_traits.rs.html#271-273">Source</a><a href="#impl-ArraysFrom%3CC%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, C&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.ArraysFrom.html" title="trait cosmic::cosmic_theme::palette::cast::ArraysFrom">ArraysFrom</a>&lt;C&gt; for T<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.IntoArrays.html" title="trait cosmic::cosmic_theme::palette::cast::IntoArrays">IntoArrays</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.arrays_from" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_arrays_traits.rs.html#276">Source</a><a href="#method.arrays_from" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.ArraysFrom.html#tymethod.arrays_from" class="fn">arrays_from</a>(colors: C) -&gt; T</h4></section></summary><div class='docblock'>Cast a collection of colors into a collection of arrays.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ArraysInto%3CC%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_arrays_traits.rs.html#329-331">Source</a><a href="#impl-ArraysInto%3CC%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, C&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.ArraysInto.html" title="trait cosmic::cosmic_theme::palette::cast::ArraysInto">ArraysInto</a>&lt;C&gt; for T<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.FromArrays.html" title="trait cosmic::cosmic_theme::palette::cast::FromArrays">FromArrays</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.arrays_into" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_arrays_traits.rs.html#334">Source</a><a href="#method.arrays_into" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.ArraysInto.html#tymethod.arrays_into" class="fn">arrays_into</a>(self) -&gt; C</h4></section></summary><div class='docblock'>Cast this collection of arrays into a collection of colors.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Borrow%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#209">Source</a><a href="#impl-Borrow%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.Borrow.html" title="trait cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::borrow::Borrow">Borrow</a>&lt;T&gt; for T<div class="where">where
T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#211">Source</a><a href="#method.borrow" class="anchor">§</a><h4 class="code-header">fn <a href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.Borrow.html#tymethod.borrow" class="fn">borrow</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;T</a></h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-BorrowMut%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#217">Source</a><a href="#impl-BorrowMut%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.BorrowMut.html" title="trait cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::borrow::BorrowMut">BorrowMut</a>&lt;T&gt; for T<div class="where">where
T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow_mut" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#218">Source</a><a href="#method.borrow_mut" class="anchor">§</a><h4 class="code-header">fn <a href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.BorrowMut.html#tymethod.borrow_mut" class="fn">borrow_mut</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut T</a></h4></section></summary><div class='docblock'>Mutably borrows from an owned value. <a href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Cam16IntoUnclamped%3CWpParam,+T%3E-for-U" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#143-145">Source</a><a href="#impl-Cam16IntoUnclamped%3CWpParam,+T%3E-for-U" class="anchor">§</a><h3 class="code-header">impl&lt;WpParam, T, U&gt; <a class="trait" href="../../cosmic_theme/palette/cam16/trait.Cam16IntoUnclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::Cam16IntoUnclamped">Cam16IntoUnclamped</a>&lt;WpParam, T&gt; for U<div class="where">where
T: <a class="trait" href="../../cosmic_theme/palette/cam16/trait.FromCam16Unclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::FromCam16Unclamped">FromCam16Unclamped</a>&lt;WpParam, U&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Scalar-1" class="associatedtype trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#147">Source</a><a href="#associatedtype.Scalar-1" class="anchor">§</a><h4 class="code-header">type <a href="../../cosmic_theme/palette/cam16/trait.Cam16IntoUnclamped.html#associatedtype.Scalar" class="associatedtype">Scalar</a> = &lt;T as <a class="trait" href="../../cosmic_theme/palette/cam16/trait.FromCam16Unclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::FromCam16Unclamped">FromCam16Unclamped</a>&lt;WpParam, U&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cam16/trait.FromCam16Unclamped.html#associatedtype.Scalar" title="type cosmic::cosmic_theme::palette::cam16::FromCam16Unclamped::Scalar">Scalar</a></h4></section></summary><div class='docblock'>The number type thats used in <code>parameters</code> when converting.</div></details><details class="toggle method-toggle" open><summary><section id="method.cam16_into_unclamped" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#149">Source</a><a href="#method.cam16_into_unclamped" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cam16/trait.Cam16IntoUnclamped.html#tymethod.cam16_into_unclamped" class="fn">cam16_into_unclamped</a>(
self,
parameters: <a class="struct" href="../../cosmic_theme/palette/cam16/struct.BakedParameters.html" title="struct cosmic::cosmic_theme::palette::cam16::BakedParameters">BakedParameters</a>&lt;WpParam, &lt;U as <a class="trait" href="../../cosmic_theme/palette/cam16/trait.Cam16IntoUnclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::Cam16IntoUnclamped">Cam16IntoUnclamped</a>&lt;WpParam, T&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cam16/trait.Cam16IntoUnclamped.html#associatedtype.Scalar" title="type cosmic::cosmic_theme::palette::cam16::Cam16IntoUnclamped::Scalar">Scalar</a>&gt;,
) -&gt; T</h4></section></summary><div class='docblock'>Converts <code>self</code> into <code>C</code>, using the provided parameters.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ComponentsFrom%3CC%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_components_traits.rs.html#414-416">Source</a><a href="#impl-ComponentsFrom%3CC%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, C&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.ComponentsFrom.html" title="trait cosmic::cosmic_theme::palette::cast::ComponentsFrom">ComponentsFrom</a>&lt;C&gt; for T<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.IntoComponents.html" title="trait cosmic::cosmic_theme::palette::cast::IntoComponents">IntoComponents</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.components_from" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_components_traits.rs.html#419">Source</a><a href="#method.components_from" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.ComponentsFrom.html#tymethod.components_from" class="fn">components_from</a>(colors: C) -&gt; T</h4></section></summary><div class='docblock'>Cast a collection of colors into a collection of color components.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Downcast-for-T" class="impl"><a href="#impl-Downcast-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; Downcast for T<div class="where">where
T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_any" class="method trait-impl"><a href="#method.into_any" class="anchor">§</a><h4 class="code-header">fn <a class="fn">into_any</a>(self: <a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/boxed/struct.Box.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::boxed::Box">Box</a>&lt;T&gt;) -&gt; <a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/boxed/struct.Box.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::boxed::Box">Box</a>&lt;dyn <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a>&gt;</h4></section></summary><div class='docblock'>Convert <code>Box&lt;dyn Trait&gt;</code> (where <code>Trait: Downcast</code>) to <code>Box&lt;dyn Any&gt;</code>. <code>Box&lt;dyn Any&gt;</code> can
then be further <code>downcast</code> into <code>Box&lt;ConcreteType&gt;</code> where <code>ConcreteType</code> implements <code>Trait</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_any_rc" class="method trait-impl"><a href="#method.into_any_rc" class="anchor">§</a><h4 class="code-header">fn <a class="fn">into_any_rc</a>(self: <a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/rc/struct.Rc.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::rc::Rc">Rc</a>&lt;T&gt;) -&gt; <a class="struct" href="../../cctk/sctk/reexports/client/backend/smallvec/alloc/rc/struct.Rc.html" title="struct cosmic::cctk::sctk::reexports::client::backend::smallvec::alloc::rc::Rc">Rc</a>&lt;dyn <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a>&gt;</h4></section></summary><div class='docblock'>Convert <code>Rc&lt;Trait&gt;</code> (where <code>Trait: Downcast</code>) to <code>Rc&lt;Any&gt;</code>. <code>Rc&lt;Any&gt;</code> can then be
further <code>downcast</code> into <code>Rc&lt;ConcreteType&gt;</code> where <code>ConcreteType</code> implements <code>Trait</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.as_any" class="method trait-impl"><a href="#method.as_any" class="anchor">§</a><h4 class="code-header">fn <a class="fn">as_any</a>(&amp;self) -&gt; &amp;(dyn <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> + 'static)</h4></section></summary><div class='docblock'>Convert <code>&amp;Trait</code> (where <code>Trait: Downcast</code>) to <code>&amp;Any</code>. This is needed since Rust cannot
generate <code>&amp;Any</code>s vtable from <code>&amp;Trait</code>s.</div></details><details class="toggle method-toggle" open><summary><section id="method.as_any_mut" class="method trait-impl"><a href="#method.as_any_mut" class="anchor">§</a><h4 class="code-header">fn <a class="fn">as_any_mut</a>(&amp;mut self) -&gt; &amp;mut (dyn <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> + 'static)</h4></section></summary><div class='docblock'>Convert <code>&amp;mut Trait</code> (where <code>Trait: Downcast</code>) to <code>&amp;Any</code>. This is needed since Rust cannot
generate <code>&amp;mut Any</code>s vtable from <code>&amp;mut Trait</code>s.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-From%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#791">Source</a><a href="#impl-From%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-1" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#794">Source</a><a href="#method.from-1" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(t: T) -&gt; T</h4></section></summary><div class="docblock"><p>Returns the argument unchanged.</p>
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-FromAngle%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/angle.rs.html#65">Source</a><a href="#impl-FromAngle%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../cosmic_theme/palette/angle/trait.FromAngle.html" title="trait cosmic::cosmic_theme::palette::angle::FromAngle">FromAngle</a>&lt;T&gt; for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from_angle" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/angle.rs.html#67">Source</a><a href="#method.from_angle" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/angle/trait.FromAngle.html#tymethod.from_angle" class="fn">from_angle</a>(angle: T) -&gt; T</h4></section></summary><div class='docblock'>Performs a conversion from <code>angle</code>.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-FromStimulus%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/stimulus.rs.html#85">Source</a><a href="#impl-FromStimulus%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="../../cosmic_theme/palette/stimulus/trait.FromStimulus.html" title="trait cosmic::cosmic_theme::palette::stimulus::FromStimulus">FromStimulus</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="../../cosmic_theme/palette/stimulus/trait.IntoStimulus.html" title="trait cosmic::cosmic_theme::palette::stimulus::IntoStimulus">IntoStimulus</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from_stimulus" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/stimulus.rs.html#87">Source</a><a href="#method.from_stimulus" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/stimulus/trait.FromStimulus.html#tymethod.from_stimulus" class="fn">from_stimulus</a>(other: U) -&gt; T</h4></section></summary><div class='docblock'>Converts <code>other</code> into <code>Self</code>, while performing the appropriate scaling,
rounding and clamping.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Instrument-for-T" class="impl"><a href="#impl-Instrument-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; Instrument for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.instrument" class="method trait-impl"><a href="#method.instrument" class="anchor">§</a><h4 class="code-header">fn <a class="fn">instrument</a>(self, span: Span) -&gt; Instrumented&lt;Self&gt; <a href="#" class="tooltip" data-notable-ty="Instrumented&lt;Self&gt;"></a></h4></section></summary><div class='docblock'>Instruments this type with the provided [<code>Span</code>], returning an
<code>Instrumented</code> wrapper. <a>Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.in_current_span" class="method trait-impl"><a href="#method.in_current_span" class="anchor">§</a><h4 class="code-header">fn <a class="fn">in_current_span</a>(self) -&gt; Instrumented&lt;Self&gt; <a href="#" class="tooltip" data-notable-ty="Instrumented&lt;Self&gt;"></a></h4></section></summary><div class='docblock'>Instruments this type with the <a href="super::Span::current()">current</a> <a href="crate::Span"><code>Span</code></a>, returning an
<code>Instrumented</code> wrapper. <a>Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#773-775">Source</a><a href="#impl-Into%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#783">Source</a><a href="#method.into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html#tymethod.into" class="fn">into</a>(self) -&gt; U</h4></section></summary><div class="docblock"><p>Calls <code>U::from(self)</code>.</p>
<p>That is, this conversion is whatever the implementation of
<code><a href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for U</code> chooses to do.</p>
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoAngle%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/angle.rs.html#78-80">Source</a><a href="#impl-IntoAngle%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="../../cosmic_theme/palette/angle/trait.IntoAngle.html" title="trait cosmic::cosmic_theme::palette::angle::IntoAngle">IntoAngle</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="../../cosmic_theme/palette/angle/trait.FromAngle.html" title="trait cosmic::cosmic_theme::palette::angle::FromAngle">FromAngle</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_angle" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/angle.rs.html#83">Source</a><a href="#method.into_angle" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/angle/trait.IntoAngle.html#tymethod.into_angle" class="fn">into_angle</a>(self) -&gt; U</h4></section></summary><div class='docblock'>Performs a conversion into <code>T</code>.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoBoot%3CState,+Message%3E-for-State" class="impl"><a href="#impl-IntoBoot%3CState,+Message%3E-for-State" class="anchor">§</a><h3 class="code-header">impl&lt;State, Message&gt; <a class="trait" href="../../iced/application/trait.IntoBoot.html" title="trait cosmic::iced::application::IntoBoot">IntoBoot</a>&lt;State, Message&gt; for State</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_boot" class="method trait-impl"><a href="#method.into_boot" class="anchor">§</a><h4 class="code-header">fn <a href="../../iced/application/trait.IntoBoot.html#tymethod.into_boot" class="fn">into_boot</a>(self) -&gt; (State, <a class="struct" href="../../struct.Task.html" title="struct cosmic::Task">Task</a>&lt;Message&gt;)</h4></section></summary><div class='docblock'>Turns some type into the initial state of some <a href="../../iced/struct.Application.html" title="struct cosmic::iced::Application"><code>Application</code></a>.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoCam16Unclamped%3CWpParam,+T%3E-for-U" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#114-116">Source</a><a href="#impl-IntoCam16Unclamped%3CWpParam,+T%3E-for-U" class="anchor">§</a><h3 class="code-header">impl&lt;WpParam, T, U&gt; <a class="trait" href="../../cosmic_theme/palette/cam16/trait.IntoCam16Unclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::IntoCam16Unclamped">IntoCam16Unclamped</a>&lt;WpParam, T&gt; for U<div class="where">where
T: <a class="trait" href="../../cosmic_theme/palette/cam16/trait.Cam16FromUnclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::Cam16FromUnclamped">Cam16FromUnclamped</a>&lt;WpParam, U&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Scalar" class="associatedtype trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#118">Source</a><a href="#associatedtype.Scalar" class="anchor">§</a><h4 class="code-header">type <a href="../../cosmic_theme/palette/cam16/trait.IntoCam16Unclamped.html#associatedtype.Scalar" class="associatedtype">Scalar</a> = &lt;T as <a class="trait" href="../../cosmic_theme/palette/cam16/trait.Cam16FromUnclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::Cam16FromUnclamped">Cam16FromUnclamped</a>&lt;WpParam, U&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cam16/trait.Cam16FromUnclamped.html#associatedtype.Scalar" title="type cosmic::cosmic_theme::palette::cam16::Cam16FromUnclamped::Scalar">Scalar</a></h4></section></summary><div class='docblock'>The number type thats used in <code>parameters</code> when converting.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_cam16_unclamped" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cam16.rs.html#120">Source</a><a href="#method.into_cam16_unclamped" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cam16/trait.IntoCam16Unclamped.html#tymethod.into_cam16_unclamped" class="fn">into_cam16_unclamped</a>(
self,
parameters: <a class="struct" href="../../cosmic_theme/palette/cam16/struct.BakedParameters.html" title="struct cosmic::cosmic_theme::palette::cam16::BakedParameters">BakedParameters</a>&lt;WpParam, &lt;U as <a class="trait" href="../../cosmic_theme/palette/cam16/trait.IntoCam16Unclamped.html" title="trait cosmic::cosmic_theme::palette::cam16::IntoCam16Unclamped">IntoCam16Unclamped</a>&lt;WpParam, T&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cam16/trait.IntoCam16Unclamped.html#associatedtype.Scalar" title="type cosmic::cosmic_theme::palette::cam16::IntoCam16Unclamped::Scalar">Scalar</a>&gt;,
) -&gt; T</h4></section></summary><div class='docblock'>Converts <code>self</code> into <code>C</code>, using the provided parameters.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoColor%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/from_into_color.rs.html#129-131">Source</a><a href="#impl-IntoColor%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="../../cosmic_theme/palette/trait.IntoColor.html" title="trait cosmic::cosmic_theme::palette::IntoColor">IntoColor</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="../../cosmic_theme/palette/trait.FromColor.html" title="trait cosmic::cosmic_theme::palette::FromColor">FromColor</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_color" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/from_into_color.rs.html#134">Source</a><a href="#method.into_color" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/trait.IntoColor.html#tymethod.into_color" class="fn">into_color</a>(self) -&gt; U</h4></section></summary><div class='docblock'>Convert into T with values clamped to the color defined bounds <a href="../../cosmic_theme/palette/trait.IntoColor.html#tymethod.into_color">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoColorUnclamped%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/from_into_color_unclamped.rs.html#95-97">Source</a><a href="#impl-IntoColorUnclamped%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="../../cosmic_theme/palette/convert/trait.IntoColorUnclamped.html" title="trait cosmic::cosmic_theme::palette::convert::IntoColorUnclamped">IntoColorUnclamped</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="../../cosmic_theme/palette/convert/trait.FromColorUnclamped.html" title="trait cosmic::cosmic_theme::palette::convert::FromColorUnclamped">FromColorUnclamped</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_color_unclamped" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/from_into_color_unclamped.rs.html#100">Source</a><a href="#method.into_color_unclamped" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/convert/trait.IntoColorUnclamped.html#tymethod.into_color_unclamped" class="fn">into_color_unclamped</a>(self) -&gt; U</h4></section></summary><div class='docblock'>Convert into T. The resulting color might be invalid in its color space <a href="../../cosmic_theme/palette/convert/trait.IntoColorUnclamped.html#tymethod.into_color_unclamped">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoListItem%3C'a,+Message%3E-for-T" class="impl"><a class="src rightside" href="../../../src/cosmic/widget/list/list_column.rs.html#52-59">Source</a><a href="#impl-IntoListItem%3C'a,+Message%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;'a, Message, T&gt; <a class="trait" href="../list_column/trait.IntoListItem.html" title="trait cosmic::widget::list_column::IntoListItem">IntoListItem</a>&lt;'a, Message&gt; for T<div class="where">where
T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="struct" href="../../iced/daemon/program/graphics/core/struct.Element.html" title="struct cosmic::iced::daemon::program::graphics::core::Element">Element</a>&lt;'a, Message, <a class="struct" href="../../struct.Theme.html" title="struct cosmic::Theme">Theme</a>, Renderer&gt;&gt;,</div></h3></section></summary><div class="impl-items"><section id="method.into_list_item" class="method trait-impl"><a class="src rightside" href="../../../src/cosmic/widget/list/list_column.rs.html#56-58">Source</a><a href="#method.into_list_item" class="anchor">§</a><h4 class="code-header">fn <a href="../list_column/trait.IntoListItem.html#tymethod.into_list_item" class="fn">into_list_item</a>(self) -&gt; <a class="enum" href="../list_column/enum.ListItem.html" title="enum cosmic::widget::list_column::ListItem">ListItem</a>&lt;'a, Message&gt;</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-IntoStimulus%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/stimulus.rs.html#109">Source</a><a href="#impl-IntoStimulus%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../cosmic_theme/palette/stimulus/trait.IntoStimulus.html" title="trait cosmic::cosmic_theme::palette::stimulus::IntoStimulus">IntoStimulus</a>&lt;T&gt; for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into_stimulus" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/stimulus.rs.html#111">Source</a><a href="#method.into_stimulus" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/stimulus/trait.IntoStimulus.html#tymethod.into_stimulus" class="fn">into_stimulus</a>(self) -&gt; T</h4></section></summary><div class='docblock'>Converts <code>self</code> into <code>T</code>, while performing the appropriate scaling,
rounding and clamping.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Same-for-T" class="impl"><a class="src rightside" href="https://docs.rs/typenum/1.19.0/src/typenum/type_operators.rs.html#34">Source</a><a href="#impl-Same-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://docs.rs/typenum/1.19.0/typenum/type_operators/trait.Same.html" title="trait typenum::type_operators::Same">Same</a> for T</h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Output" class="associatedtype trait-impl"><a class="src rightside" href="https://docs.rs/typenum/1.19.0/src/typenum/type_operators.rs.html#35">Source</a><a href="#associatedtype.Output" class="anchor">§</a><h4 class="code-header">type <a href="https://docs.rs/typenum/1.19.0/typenum/type_operators/trait.Same.html#associatedtype.Output" class="associatedtype">Output</a> = T</h4></section></summary><div class='docblock'>Should always be <code>Self</code></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryComponentsInto%3CC%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_components_traits.rs.html#584-586">Source</a><a href="#impl-TryComponentsInto%3CC%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, C&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html" title="trait cosmic::cosmic_theme::palette::cast::TryComponentsInto">TryComponentsInto</a>&lt;C&gt; for T<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.TryFromComponents.html" title="trait cosmic::cosmic_theme::palette::cast::TryFromComponents">TryFromComponents</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-2" class="associatedtype trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_components_traits.rs.html#588">Source</a><a href="#associatedtype.Error-2" class="anchor">§</a><h4 class="code-header">type <a href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html#associatedtype.Error" class="associatedtype">Error</a> = &lt;C as <a class="trait" href="../../cosmic_theme/palette/cast/trait.TryFromComponents.html" title="trait cosmic::cosmic_theme::palette::cast::TryFromComponents">TryFromComponents</a>&lt;T&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cast/trait.TryFromComponents.html#associatedtype.Error" title="type cosmic::cosmic_theme::palette::cast::TryFromComponents::Error">Error</a></h4></section></summary><div class='docblock'>The error for when <code>try_into_colors</code> fails to cast.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_components_into" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_components_traits.rs.html#591">Source</a><a href="#method.try_components_into" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html#tymethod.try_components_into" class="fn">try_components_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;C, &lt;T as <a class="trait" href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html" title="trait cosmic::cosmic_theme::palette::cast::TryComponentsInto">TryComponentsInto</a>&lt;C&gt;&gt;::<a class="associatedtype" href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html#associatedtype.Error" title="type cosmic::cosmic_theme::palette::cast::TryComponentsInto::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Try to cast this collection of color components into a collection of
colors. <a href="../../cosmic_theme/palette/cast/trait.TryComponentsInto.html#tymethod.try_components_into">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryFrom%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#833-835">Source</a><a href="#impl-TryFrom%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#837">Source</a><a href="#associatedtype.Error-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="enum" href="../../iced/enum.Never.html" title="enum cosmic::iced::Never">Infallible</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#840">Source</a><a href="#method.try_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#tymethod.try_from" class="fn">try_from</a>(value: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;T, &lt;T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryInto%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#817-819">Source</a><a href="#impl-TryInto%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#821">Source</a><a href="#associatedtype.Error" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#associatedtype.Error" class="associatedtype">Error</a> = &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/nightly/src/core/convert/mod.rs.html#824">Source</a><a href="#method.try_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#tymethod.try_into" class="fn">try_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryIntoColor%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/try_from_into_color.rs.html#110-112">Source</a><a href="#impl-TryIntoColor%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="../../cosmic_theme/palette/convert/trait.TryIntoColor.html" title="trait cosmic::cosmic_theme::palette::convert::TryIntoColor">TryIntoColor</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="../../cosmic_theme/palette/convert/trait.TryFromColor.html" title="trait cosmic::cosmic_theme::palette::convert::TryFromColor">TryFromColor</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.try_into_color" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/convert/try_from_into_color.rs.html#115">Source</a><a href="#method.try_into_color" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/convert/trait.TryIntoColor.html#tymethod.try_into_color" class="fn">try_into_color</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, <a class="struct" href="../../cosmic_theme/palette/convert/struct.OutOfBounds.html" title="struct cosmic::cosmic_theme::palette::convert::OutOfBounds">OutOfBounds</a>&lt;U&gt;&gt;</h4></section></summary><div class='docblock'>Convert into T, returning ok if the color is inside of its defined
range, otherwise an <code>OutOfBounds</code> error is returned which contains
the unclamped color. <a href="../../cosmic_theme/palette/convert/trait.TryIntoColor.html#tymethod.try_into_color">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-UintsFrom%3CC%3E-for-U" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_uints_traits.rs.html#325-327">Source</a><a href="#impl-UintsFrom%3CC%3E-for-U" class="anchor">§</a><h3 class="code-header">impl&lt;C, U&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.UintsFrom.html" title="trait cosmic::cosmic_theme::palette::cast::UintsFrom">UintsFrom</a>&lt;C&gt; for U<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.IntoUints.html" title="trait cosmic::cosmic_theme::palette::cast::IntoUints">IntoUints</a>&lt;U&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.uints_from" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_uints_traits.rs.html#330">Source</a><a href="#method.uints_from" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.UintsFrom.html#tymethod.uints_from" class="fn">uints_from</a>(colors: C) -&gt; U</h4></section></summary><div class='docblock'>Cast a collection of colors into a collection of unsigned integers.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-UintsInto%3CC%3E-for-U" class="impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_uints_traits.rs.html#401-403">Source</a><a href="#impl-UintsInto%3CC%3E-for-U" class="anchor">§</a><h3 class="code-header">impl&lt;C, U&gt; <a class="trait" href="../../cosmic_theme/palette/cast/trait.UintsInto.html" title="trait cosmic::cosmic_theme::palette::cast::UintsInto">UintsInto</a>&lt;C&gt; for U<div class="where">where
C: <a class="trait" href="../../cosmic_theme/palette/cast/trait.FromUints.html" title="trait cosmic::cosmic_theme::palette::cast::FromUints">FromUints</a>&lt;U&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.uints_into" class="method trait-impl"><a class="src rightside" href="https://docs.rs/palette/0.7.6/src/palette/cast/from_into_uints_traits.rs.html#406">Source</a><a href="#method.uints_into" class="anchor">§</a><h4 class="code-header">fn <a href="../../cosmic_theme/palette/cast/trait.UintsInto.html#tymethod.uints_into" class="fn">uints_into</a>(self) -&gt; C</h4></section></summary><div class='docblock'>Cast this collection of unsigned integers into a collection of colors.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-VZip%3CV%3E-for-T" class="impl"><a href="#impl-VZip%3CV%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;V, T&gt; VZip&lt;V&gt; for T<div class="where">where
V: MultiLane&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><section id="method.vzip" class="method trait-impl"><a href="#method.vzip" class="anchor">§</a><h4 class="code-header">fn <a class="fn">vzip</a>(self) -&gt; V</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-WithSubscriber-for-T" class="impl"><a href="#impl-WithSubscriber-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; WithSubscriber for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.with_subscriber" class="method trait-impl"><a href="#method.with_subscriber" class="anchor">§</a><h4 class="code-header">fn <a class="fn">with_subscriber</a>&lt;S&gt;(self, subscriber: S) -&gt; WithDispatch&lt;Self&gt; <a href="#" class="tooltip" data-notable-ty="WithDispatch&lt;Self&gt;"></a><div class="where">where
S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;Dispatch&gt;,</div></h4></section></summary><div class='docblock'>Attaches the provided <a href="super::Subscriber"><code>Subscriber</code></a> to this type, returning a
[<code>WithDispatch</code>] wrapper. <a>Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.with_current_subscriber" class="method trait-impl"><a href="#method.with_current_subscriber" class="anchor">§</a><h4 class="code-header">fn <a class="fn">with_current_subscriber</a>(self) -&gt; WithDispatch&lt;Self&gt; <a href="#" class="tooltip" data-notable-ty="WithDispatch&lt;Self&gt;"></a></h4></section></summary><div class='docblock'>Attaches the current <a href="dispatcher#setting-the-default-subscriber">default</a> <a href="super::Subscriber"><code>Subscriber</code></a> to this type, returning a
[<code>WithDispatch</code>] wrapper. <a>Read more</a></div></details></div></details><section id="impl-MaybeClone-for-T" class="impl"><a href="#impl-MaybeClone-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../iced/daemon/program/message/trait.MaybeClone.html" title="trait cosmic::iced::daemon::program::message::MaybeClone">MaybeClone</a> for T</h3></section><section id="impl-MaybeDebug-for-T" class="impl"><a href="#impl-MaybeDebug-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="../../iced/daemon/program/message/trait.MaybeDebug.html" title="trait cosmic::iced::daemon::program::message::MaybeDebug">MaybeDebug</a> for T</h3></section></div><script type="text/json" id="notable-traits-data">{"Instrumented<Self>":"<h3>Notable traits for <code>Instrumented&lt;T&gt;</code></h3><pre><code><div class=\"where\">impl&lt;T&gt; <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a> for Instrumented&lt;T&gt;<div class=\"where\">where\n T: <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a>,</div></div><div class=\"where\"> type <a href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html#associatedtype.Output\" class=\"associatedtype\">Output</a> = &lt;T as <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a>&gt;::<a class=\"associatedtype\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html#associatedtype.Output\" title=\"type cosmic::iced::daemon::program::graphics::futures::futures::Future::Output\">Output</a>;</div>","WithDispatch<Self>":"<h3>Notable traits for <code>WithDispatch&lt;T&gt;</code></h3><pre><code><div class=\"where\">impl&lt;T&gt; <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a> for WithDispatch&lt;T&gt;<div class=\"where\">where\n T: <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a>,</div></div><div class=\"where\"> type <a href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html#associatedtype.Output\" class=\"associatedtype\">Output</a> = &lt;T as <a class=\"trait\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html\" title=\"trait cosmic::iced::daemon::program::graphics::futures::futures::Future\">Future</a>&gt;::<a class=\"associatedtype\" href=\"../../iced/daemon/program/graphics/futures/futures/trait.Future.html#associatedtype.Output\" title=\"type cosmic::iced::daemon::program::graphics::futures::futures::Future::Output\">Output</a>;</div>"}</script></section></div></main></body></html>