Trait conch_runtime::env::StringWrapper [] [src]

pub trait StringWrapper: Borrow<String> + Clone + Eq + From<String> + Hash {
    fn into_owned(self) -> String;
fn as_str(&self) -> &str; }

An interface for any Cloneable wrapper around a String.

Required Methods

Unwrap to an owned String.

Borrow the contents as a slice.

Implementors