[][src]Struct modio::teams::Members

pub struct Members { /* fields omitted */ }

Interface for the team members of a mod.

Implementations

impl Members[src]

pub fn search(&self, filter: Filter) -> Query<TeamMember>[src]

Returns a Query interface to retrieve all team members.

See Filters and sorting.

pub async fn add(self, options: InviteTeamMemberOptions) -> Result<()>[src]

Add a team member by email. [required: token]

pub async fn edit(self, id: u32, options: EditTeamMemberOptions) -> Result<()>[src]

Edit a team member by id. [required: token]

pub async fn delete(self, id: u32) -> Result<()>[src]

Delete a team member by id. [required: token]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.