pub struct SaslAuthenticateResponseV1 {
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 SaslAuthenticateResponseV1
impl SaslAuthenticateResponseV1
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for SaslAuthenticateResponseV1
impl Clone for SaslAuthenticateResponseV1
Source§fn clone(&self) -> SaslAuthenticateResponseV1
fn clone(&self) -> SaslAuthenticateResponseV1
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 SaslAuthenticateResponseV1
impl Debug for SaslAuthenticateResponseV1
impl Eq for SaslAuthenticateResponseV1
impl StructuralPartialEq for SaslAuthenticateResponseV1
Auto Trait Implementations§
impl Freeze for SaslAuthenticateResponseV1
impl RefUnwindSafe for SaslAuthenticateResponseV1
impl Send for SaslAuthenticateResponseV1
impl Sync for SaslAuthenticateResponseV1
impl Unpin for SaslAuthenticateResponseV1
impl UnsafeUnpin for SaslAuthenticateResponseV1
impl UnwindSafe for SaslAuthenticateResponseV1
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