// use std::ffi::CStr;
// use cassandra_sys::cass_write_type_string;
use cassandra_sys::CassWriteType;
/// The write type of a request
#[derive(Debug)]
pub struct WriteType(pub CassWriteType);
impl WriteType {
// ///Gets the string for a write type.
// pub fn write_type_string(&self) -> String {
// unsafe { CStr::from_ptr(cass_write_type_string(self.0)).to_str().unwrap().to_owned() }
// }
}