MemEncoder in rustc_serialize::opaque::mem_encoder - Rust (original) (raw)
pub struct MemEncoder {
pub data: Vec<u8>,
}
Write up to N bytes to this encoder.
This function can be used to avoid the overhead of calling memcpy for writes that have runtime-variable length, but are small and have a small fixed upper bound.
This can be used to do in-place encoding as is done for leb128 (without this function we would need to write to a temporary buffer then memcpy into the encoder), and it can also be used to implement the varint scheme we use for rmeta and dep graph encoding, where we only want to encode the first few bytes of an integer. Note that common architectures support fixed-size writes up to 8 bytes with one instruction, so while this does in some sense do wasted work, we come out ahead.
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes