Docs.rs
data-rw-1.6.4
data-rw 1.6.4
Docs.rs crate page
MIT
/
Apache-2.0
Links
Repository
crates.io
Source
Owners
luyikk
Dependencies
anyhow ^1.0
normal
auto_impl ^1
normal
cfg-if ^1.0
normal
paste ^1.0
normal
rmp-serde ^1
normal
optional
serde ^1.0
normal
serde_json ^1
normal
optional
bincode ^1.3.3
dev
criterion ^0.5
dev
rmp-serde ^1
dev
serde ^1.0
dev
serde_json ^1.0
dev
Versions
2.22%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
WriteNumberVar
data_rw
1.6.4
Write
Number
Var
Required Methods
write
Implementations on Foreign Types
&'a T
&'a mut T
&[u8]
&str
Box<T>
String
Vec<u8>
i16
i32
i64
u16
u32
u64
Implementors
In data_
rw::
data
data_rw
::
data
Trait
Write
Number
Var
Copy item path
Source
pub trait WriteNumberVar { // Required method fn
write
(&self, data: &mut
Data
); }
Required Methods
§
Source
fn
write
(&self, data: &mut
Data
)
Implementations on Foreign Types
§
Source
§
impl
WriteNumberVar
for &
str
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for &[
u8
]
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
i16
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
i32
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
i64
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
u16
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
u32
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
u64
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
String
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl
WriteNumberVar
for
Vec
<
u8
>
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl<'a, T: 'a +
WriteNumberVar
+ ?
Sized
>
WriteNumberVar
for
&'a T
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl<'a, T: 'a +
WriteNumberVar
+ ?
Sized
>
WriteNumberVar
for
&'a mut T
Source
§
fn
write
(&self, data: &mut
Data
)
Source
§
impl<T:
WriteNumberVar
+ ?
Sized
>
WriteNumberVar
for
Box
<T>
Source
§
fn
write
(&self, data: &mut
Data
)
Implementors
§