Trait bash_builtins::convert::FromWordPointer
source · pub trait FromWordPointer<'a>: Sized + 'a {
type Err: Display;
// Required method
fn from_cstr(s: &'a CStr) -> Result<Self, Self::Err>;
}Expand description
Parse a value from a CStr instance.