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

Options for group creation.

Default values are provided with GroupCreateOpts::default()

Implementations§

source§

impl GroupCreateOpts

source

pub fn new( id: Option<GroupId>, name: Option<GroupName>, add_as_admin: bool, add_as_member: bool, owner: Option<UserId>, admins: Vec<UserId>, members: Vec<UserId>, needs_rotation: bool ) -> GroupCreateOpts

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§

source§

impl Clone for GroupCreateOpts

source§

fn clone(&self) -> GroupCreateOpts

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GroupCreateOpts

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GroupCreateOpts

source§

fn default() -> Self

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.

source§

impl Hash for GroupCreateOpts

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

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

impl PartialEq for GroupCreateOpts

source§

fn eq(&self, other: &GroupCreateOpts) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

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

impl Eq for GroupCreateOpts

source§

impl StructuralEq for GroupCreateOpts

source§

impl StructuralPartialEq for GroupCreateOpts

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Clear for Twhere T: InitializableFromZeroed + ?Sized,

§

fn clear(&mut self)

Completely overwrites this value.
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

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

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> InitializableFromZeroed for Twhere T: Default,

§

unsafe fn initialize(place: *mut T)

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

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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