Docs.rs
character-stream-0.13.0
character-stream 0.13.0
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
32Bites
Dependencies
anyhow ^1.0
normal
simdutf8 ^0.1.4
normal
thiserror ^1.0
normal
Versions
43.9%
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
Peekable
character_
stream
0.13.0
Peekable
Required Methods
peek
Implementors
In crate character_
stream
character_stream
Trait
Peekable
Copy item path
Source
pub trait Peekable<T> { // Required method fn
peek
(&mut self) ->
Option
<
&T
>; }
Required Methods
§
Source
fn
peek
(&mut self) ->
Option
<
&T
>
Implementors
§
Source
§
impl<Reader:
Read
>
Peekable
<
Result
<
char
,
CharacterError
>> for
PeekableCharacterStream
<Reader,
Peek
>