pub trait PdCStrExt {
    // Required methods
    fn from_c_str(s: &CStr) -> &Self;
    fn as_c_str(&self) -> &CStr;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§