mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-30 05:50:29 +00:00
14 lines
12 KiB
HTML
14 lines
12 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `AsSlice` trait in crate `as_slice`."><meta name="keywords" content="rust, rustlang, rust-lang, AsSlice"><title>as_slice::AsSlice - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><link rel="stylesheet" type="text/css" href="../dark.css" disabled ><link rel="stylesheet" type="text/css" href="../ayu.css" disabled ><script src="../storage.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="icon" type="image/svg+xml" href="../favicon.svg">
|
||
<link rel="alternate icon" type="image/png" href="../favicon-16x16.png">
|
||
<link rel="alternate icon" type="image/png" href="../favicon-32x32.png"><style type="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">☰</div><a href='../as_slice/index.html'><div class='logo-container rust-logo'><img src='../rust-logo.png' alt='logo'></div></a><p class='location'>Trait AsSlice</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#associated-types">Associated Types</a><div class="sidebar-links"><a href="#associatedtype.Element">Element</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.as_slice">as_slice</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E">GenericArray<T, N></a><a href="#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E">GenericArray<T, N></a><a href="#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E">GenericArray<T, N></a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='index.html'>as_slice</a></p><script>window.sidebarCurrent = {name: 'AsSlice', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../theme.js"></script><nav class="sub"><form class="search-form"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" disabled autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><span class="help-button">?</span>
|
||
<a id="settings-menu" href="../settings.html"><img src="../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>−</span>]</a></span><a class='srclink' href='../src/as_slice/lib.rs.html#31-37' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='index.html'>as_slice</a>::<wbr><a class="trait" href=''>AsSlice</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub trait AsSlice {
|
||
type <a href='#associatedtype.Element' class="type">Element</a>;
|
||
fn <a href='#tymethod.as_slice' class='fnname'>as_slice</a>(&self) -> &[Self::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a>];
|
||
}</pre></div><div class='docblock'><p>Something that can be seen as an immutable slice</p>
|
||
<p><strong>NOTE</strong>: This trait is implemented for arrays (<code>[T; N]</code>) of sizes 0 to 256
|
||
(inclusive) and arrays whose lengths are a power of 2 up to <code>1 << 16</code>. These
|
||
implementations don't show in the documentation because they would reduce
|
||
readability.</p>
|
||
</div><h2 id='associated-types' class='small-section-header'>Associated Types<a href='#associated-types' class='anchor'></a></h2><div class='methods'><h3 id='associatedtype.Element' class='method'><code>type <a href='#associatedtype.Element' class="type">Element</a></code></h3><div class='docblock'><p>The element type of the slice view</p>
|
||
</div></div><span class='loading-content'>Loading content...</span><h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.as_slice' class='method'><code>fn <a href='#tymethod.as_slice' class='fnname'>as_slice</a>(&self) -> &[Self::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a>]</code></h3><div class='docblock'><p>Returns the immutable slice view of <code>Self</code></p>
|
||
</div></div><span class='loading-content'>Loading content...</span><h2 id='foreign-impls' class='small-section-header'>Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a></h2><h3 id='impl-AsSlice-for-GenericArray%3CT%2C%20N%3E' class='impl'><code class='in-band'>impl<T, N> <a class="trait" href="../as_slice/trait.AsSlice.html" title="trait as_slice::AsSlice">AsSlice</a> for <a class="struct" href="../generic_array/struct.GenericArray.html" title="struct generic_array::GenericArray">GenericArray</a><T, N> <span class="where fmt-newline">where<br> N: <a class="trait" href="../generic_array/trait.ArrayLength.html" title="trait generic_array::ArrayLength">ArrayLength</a><T>, </span></code><a href='#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#95-104' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-1' class="type"><code>type <a href='#associatedtype.Element' class="type">Element</a> = T</code></h4><h4 id='method.as_slice' class="method hidden"><code>fn <a href='#method.as_slice' class='fnname'>as_slice</a>(&self) -> &[T]</code><a class='srclink' href='../src/as_slice/lib.rs.html#101-103' title='goto source code'>[src]</a></h4></div><h3 id='impl-AsSlice-for-GenericArray%3CT%2C%20N%3E-1' class='impl'><code class='in-band'>impl<T, N> <a class="trait" href="../as_slice/trait.AsSlice.html" title="trait as_slice::AsSlice">AsSlice</a> for <a class="struct" href="../generic_array/struct.GenericArray.html" title="struct generic_array::GenericArray">GenericArray</a><T, N> <span class="where fmt-newline">where<br> N: <a class="trait" href="../generic_array/trait.ArrayLength.html" title="trait generic_array::ArrayLength">ArrayLength</a><T>, </span></code><a href='#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E-1' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#115-124' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-2' class="type"><code>type <a href='#associatedtype.Element' class="type">Element</a> = T</code></h4><h4 id='method.as_slice-1' class="method hidden"><code>fn <a href='#method.as_slice' class='fnname'>as_slice</a>(&self) -> &[T]</code><a class='srclink' href='../src/as_slice/lib.rs.html#121-123' title='goto source code'>[src]</a></h4></div><h3 id='impl-AsSlice-for-GenericArray%3CT%2C%20N%3E-2' class='impl'><code class='in-band'>impl<T, N> <a class="trait" href="../as_slice/trait.AsSlice.html" title="trait as_slice::AsSlice">AsSlice</a> for <a class="struct" href="../generic_array/struct.GenericArray.html" title="struct generic_array::GenericArray">GenericArray</a><T, N> <span class="where fmt-newline">where<br> N: <a class="trait" href="../generic_array/trait.ArrayLength.html" title="trait generic_array::ArrayLength">ArrayLength</a><T>, </span></code><a href='#impl-AsSlice-for-GenericArray%3CT%2C%20N%3E-2' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#135-144' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-3' class="type"><code>type <a href='#associatedtype.Element' class="type">Element</a> = T</code></h4><h4 id='method.as_slice-2' class="method hidden"><code>fn <a href='#method.as_slice' class='fnname'>as_slice</a>(&self) -> &[T]</code><a class='srclink' href='../src/as_slice/lib.rs.html#141-143' title='goto source code'>[src]</a></h4></div><span class='loading-content'>Loading content...</span><h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-AsSlice' class='impl'><code class='in-band'>impl<'a, S: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>> AsSlice for &'a S <span class="where fmt-newline">where<br> S: <a class="trait" href="../as_slice/trait.AsSlice.html" title="trait as_slice::AsSlice">AsSlice</a>, </span></code><a href='#impl-AsSlice' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#50-59' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-4' class="type"><code>type <a href='#associatedtype.Element-4' class="type">Element</a> = S::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a></code></h4><h4 id='method.as_slice-3' class="method hidden"><code>fn <a href='#method.as_slice-3' class='fnname'>as_slice</a>(&self) -> &[S::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a>]</code><a class='srclink' href='../src/as_slice/lib.rs.html#56-58' title='goto source code'>[src]</a></h4></div><h3 id='impl-AsSlice-1' class='impl'><code class='in-band'>impl<'a, S: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>> AsSlice for &'a mut S <span class="where fmt-newline">where<br> S: <a class="trait" href="../as_slice/trait.AsSlice.html" title="trait as_slice::AsSlice">AsSlice</a>, </span></code><a href='#impl-AsSlice-1' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#61-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-5' class="type"><code>type <a href='#associatedtype.Element-5' class="type">Element</a> = S::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a></code></h4><h4 id='method.as_slice-4' class="method hidden"><code>fn <a href='#method.as_slice-4' class='fnname'>as_slice</a>(&self) -> &[S::<a class="type" href="../as_slice/trait.AsSlice.html#associatedtype.Element" title="type as_slice::AsSlice::Element">Element</a>]</code><a class='srclink' href='../src/as_slice/lib.rs.html#67-69' title='goto source code'>[src]</a></h4></div><h3 id='impl-AsSlice-2' class='impl'><code class='in-band'>impl<T> AsSlice for [T]</code><a href='#impl-AsSlice-2' class='anchor'></a><a class='srclink' href='../src/as_slice/lib.rs.html#81-87' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Element-6' class="type"><code>type <a href='#associatedtype.Element-6' class="type">Element</a> = T</code></h4><h4 id='method.as_slice-5' class="method hidden"><code>fn <a href='#method.as_slice-5' class='fnname'>as_slice</a>(&self) -> &[T]</code><a class='srclink' href='../src/as_slice/lib.rs.html#84-86' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript" src="../implementors/as_slice/trait.AsSlice.js" async></script></section><section id="search" class="content hidden"></section><section class="footer"></section><script>window.rootPath = "../";window.currentCrate = "as_slice";</script><script src="../main.js"></script><script defer src="../search-index.js"></script></body></html> |