Docs.rs
sledgehammer_utils-0.3.1
sledgehammer_utils 0.3.1
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
ealmloff
Dependencies
rustc-hash ^1.1.0
normal
rand ^0.8.5
dev
Versions
9.09%
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
sledgehammer_
utils
0.3.1
Writable
Required Methods
write
Implementations on Foreign Types
&String
&str
Arguments<'_>
String
char
i8
i16
i32
i64
i128
isize
u8
u16
u32
u64
u128
usize
Implementors
In crate sledgehammer_
utils
sledgehammer_utils
Trait
Writable
Copy item path
Source
pub trait Writable { // Required method fn
write
(self, into: &mut
Vec
<
u8
>); }
Required Methods
§
Source
fn
write
(self, into: &mut
Vec
<
u8
>)
Implementations on Foreign Types
§
Source
§
impl
Writable
for &
str
Source
§
fn
write
(self, into: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for &
String
Source
§
fn
write
(self, into: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
char
Source
§
fn
write
(self, into: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
i8
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
i16
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
i32
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
i64
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
i128
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
isize
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
u8
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
u16
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
u32
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
u64
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
u128
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
usize
Source
§
fn
write
(self, to: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
String
Source
§
fn
write
(self, into: &mut
Vec
<
u8
>)
Source
§
impl
Writable
for
Arguments
<'_>
Source
§
fn
write
(self, into: &mut
Vec
<
u8
>)
Implementors
§
Source
§
impl<F>
Writable
for F
where F:
FnOnce
(&mut
Vec
<
u8
>),