pub enum SessionMethod {
SessionCreate,
SessionSignup,
SessionLogin,
SessionMessage,
}
Expand description
Available session methods.
Variants§
SessionCreate
Create a new session.
SessionSignup
Signup for a session.
SessionLogin
Login to a session.
SessionMessage
Send a message to a session.
Trait Implementations§
Source§impl Debug for SessionMethod
impl Debug for SessionMethod
Source§impl Display for SessionMethod
impl Display for SessionMethod
Source§impl FromStr for SessionMethod
impl FromStr for SessionMethod
Auto Trait Implementations§
impl Freeze for SessionMethod
impl RefUnwindSafe for SessionMethod
impl Send for SessionMethod
impl Sync for SessionMethod
impl Unpin for SessionMethod
impl UnwindSafe for SessionMethod
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