//! Utility functions for Header implementations. use std::from_str::FromStr; use std::str::from_utf8; /// Utility function that reads a single raw string when parsing a header pub fn from_one_raw_str(raw: &[Vec]) -> Option { if raw.len() != 1 { return None; } // we JUST checked that raw.len() == 1, so raw[0] WILL exist. match from_utf8(unsafe { raw.as_slice().unsafe_get(0).as_slice() }) { Some(s) => FromStr::from_str(s), None => None } }