pub struct InviteStore<'a> {
pub channel: &'a mut Channel,
}Expand description
A struct that provides an interface for interacting with invite-store
Fields§
§channel: &'a mut ChannelImplementations§
Source§impl<'a> InviteStore<'a>
impl<'a> InviteStore<'a>
Sourcepub fn accept_invite(&self, term: &str, uid: &str)
pub fn accept_invite(&self, term: &str, uid: &str)
Accept an invite
Auto Trait Implementations§
impl<'a> Freeze for InviteStore<'a>
impl<'a> !RefUnwindSafe for InviteStore<'a>
impl<'a> Send for InviteStore<'a>
impl<'a> Sync for InviteStore<'a>
impl<'a> Unpin for InviteStore<'a>
impl<'a> !UnwindSafe for InviteStore<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more