pub trait AsStr { // Required method fn as_str(&self) -> &str; }
Trait defining instance method as_str() : &str that allows a type to expose its contiguous character representation to client code.
as_str() : &str