Trait julia::string::TryIntoString [] [src]

pub trait TryIntoString {
    type Error;
    fn try_into_string(self) -> Result<String, Self::Error>;
}

Trait for types which can be attempted to convert into a Rust String.

Associated Types

Required Methods

Implementations on Foreign Types

impl TryIntoString for *const c_char
[src]

impl<'a> TryIntoString for &'a CStr
[src]

impl TryIntoString for CString
[src]

impl<'a> TryIntoString for &'a str
[src]

impl TryIntoString for String
[src]

Implementors