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

Declare constants like Go.
Declare statics like Go.

Functions

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().