pub enum SaslFrameBody {
SaslMechanisms(SaslMechanisms),
SaslInit(SaslInit),
SaslChallenge(SaslChallenge),
SaslResponse(SaslResponse),
SaslOutcome(SaslOutcome),
}Variants§
SaslMechanisms(SaslMechanisms)
SaslInit(SaslInit)
SaslChallenge(SaslChallenge)
SaslResponse(SaslResponse)
SaslOutcome(SaslOutcome)
Trait Implementations§
Source§impl Clone for SaslFrameBody
impl Clone for SaslFrameBody
Source§fn clone(&self) -> SaslFrameBody
fn clone(&self) -> SaslFrameBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SaslFrameBody
impl Debug for SaslFrameBody
Source§impl Encode for SaslFrameBody
impl Encode for SaslFrameBody
Source§impl PartialEq for SaslFrameBody
impl PartialEq for SaslFrameBody
impl StructuralPartialEq for SaslFrameBody
Auto Trait Implementations§
impl !Freeze for SaslFrameBody
impl RefUnwindSafe for SaslFrameBody
impl Send for SaslFrameBody
impl Sync for SaslFrameBody
impl Unpin for SaslFrameBody
impl UnwindSafe for SaslFrameBody
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