Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
From<&str> for ReactionType
Implement the ability to create a ReactionType from a string slice. This is to be able to produce code like: ```rust msg.react("π"); ``` rather than needing to go the longer route: ```rust msg.react("π".to_owned()); ```
- Loading branch information