Crate crabmole

Crate crabmole 

Source
Expand description

Porting Go standard library in Rust

Modules§

encodingencoding or hex or base64 or base32 or binary or ascii85
Go encoding library
ioio or async-io or pipe or async-pipe
Go io library
sortsort
Go sort library

Macros§

constnderive
Declare constants like Go.
staticn
Declare statics like Go.

Functions§

copy
Copies elements from a source slice into a destination slice. (As a special case, it also will copy bytes from a string to a slice of bytes.) The source and destination may overlap. Copy returns the number of elements copied, which will be the minimum of src.len() and dst.len().