Docs.rs
arc-slice-0.1.0-alpha.2
arc-slice 0.1.0-alpha.2
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
wyfo
Dependencies
bytes ^1
normal
optional
either ^1
normal
optional
portable-atomic ^1
normal
optional
serde ^1
normal
optional
bytes ^1.10.1
dev
criterion ^0.5.1
dev
iai-callgrind ^0.14.0
dev
shared_memory ^0.12.4
dev
loom ^0.7
dev
Versions
5.26%
of the crate is documented
Go to latest stable release
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
arc_
slice
0.1.0-alpha.2
Buffer
Required Methods
as_slice
Implementations on Foreign Types
&'static [T; N]
&'static [T]
Arc<[T]>
Box<[T]>
Cow<'static, [T]>
Vec<T>
[T; N]
Implementors
In arc_
slice::
buffer
arc_slice
::
buffer
Trait
Buffer
Copy item path
Source
pub trait Buffer<T>:
Send
+ 'static { // Required method fn
as_slice
(&self) -> &
[T]
; }
Required Methods
§
Source
fn
as_slice
(&self) -> &
[T]
Implementations on Foreign Types
§
Source
§
impl<T:
Clone
+
Send
+
Sync
+ 'static>
Buffer
<T> for
Cow
<'static,
[T]
>
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static>
Buffer
<T> for &'static
[T]
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static>
Buffer
<T> for
Box
<
[T]
>
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static>
Buffer
<T> for
Arc
<
[T]
>
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static>
Buffer
<T> for
Vec
<T>
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static, const N:
usize
>
Buffer
<T> for &'static
[T; N]
Source
§
fn
as_slice
(&self) -> &
[T]
Source
§
impl<T:
Send
+
Sync
+ 'static, const N:
usize
>
Buffer
<T> for
[T; N]
Source
§
fn
as_slice
(&self) -> &
[T]
Implementors
§