Change references from String to &str in all public signatures
The proper "rust" way of signatures is to use &str instead of String since there are multiple object types that can be coerced into &str
The proper "rust" way of signatures is to use &str instead of String since there are multiple object types that can be coerced into &str