pub trait SerializeIntoSlice {
    fn write_into_slice(&self, buf: &mut [u8]) -> Result<usize, Error>;
}

Required Methods§

Implementations on Foreign Types§

Panics

Will panic under the following conditions:

  • feature ‘str32’ active: n >= 2^32
  • feature ‘str16’ active: n >= 2^16
  • else: n >= 2^8

Implementors§

Panics

Will panic under the following conditions:

  • feature ‘bin32’ active: n >= 2^32
  • feature ‘bin16’ active: n >= 2^16
  • else: n >= 2^8