pub struct GroupCreateOpts { /* private fields */ }
Expand description

Options for group creation.

Default values are provided with GroupCreateOpts::default()

Implementations

Arguments
  • id
    • None (default) - The server will assign the group’s ID.
    • Some - The provided ID will be used as the group’s ID.
  • name
    • None (default) - The group will be created with no name.
    • Some - The provided name will be used as the group’s name.
  • add_as_admin
    • true (default) - The creating user will be added as a group admin.
    • false - The creating user will not be a group admin.
  • add_as_member
    • true (default) - The creating user will be added as a group member.
    • false - The creating user will not be a group member.
  • owner
    • None (default) - The creating user will be the owner of the group.
    • Some - The provided user will be the owner of the group. This ID will automatically be added to the admin list.
  • admins
    • The list of users to be added as group admins. This list takes priority over add_as_admin, so the calling user will be added as an admin if they are in this list even if add_as_admin is false.
  • members
    • The list of users to be added as members of the group. This list takes priority over add_as_member, so the calling user will be added as a member if they are in this list even if add_as_member is false.
  • needs_rotation
    • true - The group’s private key will be marked for rotation.
    • false (default) - The group’s private key will not be marked for rotation.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Default GroupCreateOpts for common use cases.

The group will be assigned an ID and have an empty name. The user who calls group_create will be the owner of the group as well as the only admin and member of the group. The group’s private key will not be marked for rotation.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Completely overwrites this value.

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Called to initialize a place to a valid value, after it is set to all-bits-zero. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more