pub struct SaslAuthenticateResponseV2 {
pub error_code: i16,
pub error_message: Option<String>,
pub auth_bytes: Vec<u8>,
pub session_lifetime_ms: i64,
}Fields§
§error_code: i16§error_message: Option<String>§auth_bytes: Vec<u8>§session_lifetime_ms: i64Implementations§
Source§impl SaslAuthenticateResponseV2
impl SaslAuthenticateResponseV2
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for SaslAuthenticateResponseV2
impl Clone for SaslAuthenticateResponseV2
Source§fn clone(&self) -> SaslAuthenticateResponseV2
fn clone(&self) -> SaslAuthenticateResponseV2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SaslAuthenticateResponseV2
impl Debug for SaslAuthenticateResponseV2
impl Eq for SaslAuthenticateResponseV2
impl StructuralPartialEq for SaslAuthenticateResponseV2
Auto Trait Implementations§
impl Freeze for SaslAuthenticateResponseV2
impl RefUnwindSafe for SaslAuthenticateResponseV2
impl Send for SaslAuthenticateResponseV2
impl Sync for SaslAuthenticateResponseV2
impl Unpin for SaslAuthenticateResponseV2
impl UnsafeUnpin for SaslAuthenticateResponseV2
impl UnwindSafe for SaslAuthenticateResponseV2
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