Docs.rs
cl-aux-5.1.0
cl-aux 5.1.0
Permalink
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
c410-f3r
Dependencies
arrayvec ^0.7
normal
optional
serde ^1.0
normal
optional
smallvec ^1.0
normal
optional
tinyvec ^1.0
normal
optional
Versions
100%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
SingleTypeStorage
cl_aux
5.1.0
Single
Type
Storage
Required Associated Types
Item
Implementations on Foreign Types
&T
&[T]
&mut T
&mut [T]
Option<T>
[T; N]
Implementors
In crate cl_
aux
cl_aux
Trait
Single
Type
Storage
Copy item path
Source
pub trait SingleTypeStorage { type
Item
; }
Expand description
Anything that can hold a collection of items
Required Associated Types
§
Source
type
Item
Storage item
Implementations on Foreign Types
§
Source
§
impl<T>
SingleTypeStorage
for &
[T]
Source
§
type
Item
= T
Source
§
impl<T>
SingleTypeStorage
for &mut
[T]
Source
§
type
Item
= T
Source
§
impl<T>
SingleTypeStorage
for
Option
<T>
Source
§
type
Item
= T
Source
§
impl<T>
SingleTypeStorage
for
&T
where T:
SingleTypeStorage
,
Source
§
type
Item
= <T as
SingleTypeStorage
>::
Item
Source
§
impl<T>
SingleTypeStorage
for
&mut T
where T:
SingleTypeStorage
,
Source
§
type
Item
= <T as
SingleTypeStorage
>::
Item
Source
§
impl<T, const N:
usize
>
SingleTypeStorage
for
[T; N]
Source
§
type
Item
= T
Implementors
§
Source
§
impl<T>
SingleTypeStorage
for
SingleItemStorage
<T>
Source
§
type
Item
= T