Docs.rs
comde-0.3.1
comde 0.3.1
Docs.rs crate page
Apache-2.0
OR
MIT
Links
Repository
crates.io
Source
Owners
bbqsrc
Dependencies
brotli ^6.0.0
normal
optional
delegate ^0.12.0
normal
flate2 ^1.0.18
normal
optional
liblzma ^0.4.1
normal
optional
snap ^1.0.1
normal
optional
zstd ^0.13.2
normal
optional
Versions
12.82%
of the crate is documented
Platform
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
Compress
comde
0.3.1
Compress
Required Associated Types
Reader
Required Methods
to_reader
Implementations on Foreign Types
&'a Vec<u8>
&'a str
String
Implementors
In comde::
com
comde
::
com
Trait
Compress
Copy item path
Source
pub trait Compress { type
Reader
:
Read
; // Required method fn
to_reader
(self) -> Self::
Reader
; }
Required Associated Types
§
Source
type
Reader
:
Read
Required Methods
§
Source
fn
to_reader
(self) -> Self::
Reader
Implementations on Foreign Types
§
Source
§
impl
Compress
for
String
Source
§
type
Reader
=
Cursor
<
String
>
Source
§
fn
to_reader
(self) -> Self::
Reader
Source
§
impl<'a>
Compress
for &'a
str
Source
§
type
Reader
=
Cursor
<&'a
str
>
Source
§
fn
to_reader
(self) -> Self::
Reader
Source
§
impl<'a>
Compress
for &'a
Vec
<
u8
>
Source
§
type
Reader
=
Cursor
<&'a
Vec
<
u8
>>
Source
§
fn
to_reader
(self) -> Self::
Reader
Implementors
§