Docs.rs
std-io-peek-0.2.0
std-io-peek 0.2.0
Docs.rs crate page
Apache-2.0
OR
MIT
Links
Homepage
Repository
crates.io
Source
Owners
vkill
Dependencies
Versions
0%
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
Peek
std_
io_
peek
0.2.0
Peek
Required Methods
peek_sync
Implementations on Foreign Types
Cursor<T>
TcpStream
Implementors
In crate std_
io_
peek
std_io_peek
Trait
Peek
Copy item path
Source
pub trait Peek { // Required method fn
peek_sync
(&mut self, buf: &mut [
u8
]) ->
Result
<
usize
>; }
Required Methods
§
Source
fn
peek_sync
(&mut self, buf: &mut [
u8
]) ->
Result
<
usize
>
Implementations on Foreign Types
§
Source
§
impl
Peek
for
TcpStream
Source
§
fn
peek_sync
(&mut self, buf: &mut [
u8
]) ->
Result
<
usize
>
Source
§
impl<T>
Peek
for
Cursor
<T>
where T:
AsRef
<[
u8
]>,
Source
§
fn
peek_sync
(&mut self, buf: &mut [
u8
]) ->
Result
<
usize
>
Implementors
§