1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

/*!
Display trait for UtsName.
*/


use std::fmt::{self, Display};
use std::ffi::CStr;
use std::fmt::Write;

#[derive(Debug)]
pub struct DisplayCStr<'a> {
	cstr: &'a CStr,
}

impl<'a> DisplayCStr<'a> {
	#[inline]
	pub fn new(cstr: &'a CStr) -> DisplayCStr<'a> {
		DisplayCStr {
			cstr: cstr
		}
	}
}

impl<'a> Display for DisplayCStr<'a> {
	fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
		//CLONE CSTR DEBUG!
		for byte in self.cstr.to_bytes().iter().flat_map(|&b| ::std::ascii::escape_default(b)) {
			fmt.write_char(byte as char)?;
		}
		
		Ok( () )
	}
}