aboutsummaryrefslogtreecommitdiff
path: root/src/utils/builder/edit_profile.rs
Commit message (Collapse)AuthorAgeFilesLines
* Implement command groups and bucketsIllia2016-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement command groups * change to ref mut * Implement framework API. * Remove commands field * Make it all work * Make example use command groups * Requested changes * Implement adding buckets * Add ratelimit check function * Finish everything * Fix voice example * Actually fix it * Fix doc tests * Switch to result * Savage examples * Fix docs * Fixes * Accidental push * 👀 * Fix an example * fix some example * Small cleanup * Abstract ratelimit bucket logic
* Add documentation for EditMember and EditProfileKisei2016-11-301-0/+4
|
* Improve docs and add new message builder methodsIllia K2016-11-281-8/+2
| | | | | Add documentation for some missing methods - such as Game methods - and add more methods to the Message Builder.
* Add a bit more docsAustin Hellyer2016-11-261-1/+1
|
* Move the builders to the utilsAustin Hellyer2016-11-131-0/+93
The builders aren't a large enough portion of the library to deserve their own root-level module, so move them to the `utils` module. Additionally, split them into separate files, as the library will be receiving more builders and the single-file pattern was getting rather large.