1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use {Parcel, Error, CharTryFromError, Settings};
use hint;
use std::char;
use std::io::prelude::*;

impl Parcel for char
{
    const TYPE_NAME: &'static str = "char";

    fn read_field(read: &mut Read,
                  settings: &Settings,
                  _: &mut hint::Hints) -> Result<Self, Error> {
        let bytes = u32::read(read, settings)?;
        Ok(char::from_u32(bytes).ok_or(CharTryFromError{ })?)
    }

    fn write_field(&self, write: &mut Write,
                   settings: &Settings,
                   _: &mut hint::Hints) -> Result<(), Error> {
        (*self as u32).write(write, settings)
    }
}