diff options
| author | acdenisSK <[email protected]> | 2017-07-11 22:13:57 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-11 22:13:57 +0200 |
| commit | ebc4e51fe3b1e5bc61dc99da25a22d2e2277ffc6 (patch) | |
| tree | 1eeee881705d8721cdb4238461e5422043a63ca1 /src/model/permissions.rs | |
| parent | Add a way to add multiple fields at once (diff) | |
| download | serenity-ebc4e51fe3b1e5bc61dc99da25a22d2e2277ffc6.tar.xz serenity-ebc4e51fe3b1e5bc61dc99da25a22d2e2277ffc6.zip | |
Remove the deprecated functions
It's already been enough time for people to migrate
Diffstat (limited to 'src/model/permissions.rs')
| -rw-r--r-- | src/model/permissions.rs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/model/permissions.rs b/src/model/permissions.rs index 40e75ce..3968e16 100644 --- a/src/model/permissions.rs +++ b/src/model/permissions.rs @@ -146,33 +146,6 @@ pub const PRESET_VOICE: Permissions = Permissions { bits: 0b00000011111100000000000000000000, }; -/// Alias of [`PRESET_GENERAL`]. -/// -/// [`PRESET_GENERAL`]: const.PRESET_GENERAL.html -#[deprecated(since="0.1.5", note="Use `permissions::PRESET_GENERAL` instead")] -#[inline(always)] -pub fn general() -> Permissions { - PRESET_GENERAL -} - -/// Alias of [`PRESET_TEXT`]. -/// -/// [`PRESET_TEXT`]: const.PRESET_TEXT.html -#[deprecated(since="0.1.5", note="Use `permissions::PRESET_TEXT` instead")] -#[inline(always)] -pub fn text() -> Permissions { - PRESET_TEXT -} - -/// Alias of [`PRESET_VOICE`]. -/// -/// [`PRESET_VOICE`]: const.PRESET_VOICE.html -#[deprecated(since="0.1.5", note="Use `permissions::PRESET_VOICE` instead")] -#[inline(always)] -pub fn voice() -> Permissions { - PRESET_VOICE -} - bitflags! { /// A set of permissions that can be assigned to [`User`]s and [`Role`]s via /// [`PermissionOverwrite`]s, roles globally in a [`Guild`], and to |