Struct serenity::utils::builder::EditRole [] [src]

pub struct EditRole(pub ObjectBuilder);

A builer to create or edit a Role for use via a number of model and context methods.

These are:

Defaults are provided for each parameter on role creation.

Examples

Create a hoisted, mentionable role named "a test role":

// assuming you are in a `context` and a `guild_id` has been bound
let role = context.create_role(guild_id, |r| r
    .hoist(true)
    .mentionable(true)
    .name("a test role"));

Methods

impl EditRole
[src]

Creates a new builder with the values of the given [Role].

Sets the colour of the role.

Whether or not to hoist the role above lower-positioned role in the user list.

Whether or not to make the role mentionable, notifying its users.

The name of the role to set.

The set of permissions to assign the role.

The position to assign the role in the role list. This correlates to the role's position in the user list.

Trait Implementations

impl Default for EditRole
[src]

Creates a builder with default parameters.

The defaults are:

  • color: 10070709
  • hoist: false
  • mentionable: false
  • name: new role
  • permissions: the general permissions set
  • position: 1