pub struct BodyResAuthChallenge {
pub data: CBytes,
}
Expand description
Server authentication challenge.
Fields§
§data: CBytes
Trait Implementations§
source§impl Clone for BodyResAuthChallenge
impl Clone for BodyResAuthChallenge
source§fn clone(&self) -> BodyResAuthChallenge
fn clone(&self) -> BodyResAuthChallenge
Returns a copy 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 BodyResAuthChallenge
impl Debug for BodyResAuthChallenge
source§impl FromCursor for BodyResAuthChallenge
impl FromCursor for BodyResAuthChallenge
source§fn from_cursor(
cursor: &mut Cursor<&[u8]>,
version: Version
) -> Result<BodyResAuthChallenge>
fn from_cursor( cursor: &mut Cursor<&[u8]>, version: Version ) -> Result<BodyResAuthChallenge>
Tries to parse Self from a cursor of bytes.
source§impl Hash for BodyResAuthChallenge
impl Hash for BodyResAuthChallenge
source§impl Ord for BodyResAuthChallenge
impl Ord for BodyResAuthChallenge
source§fn cmp(&self, other: &BodyResAuthChallenge) -> Ordering
fn cmp(&self, other: &BodyResAuthChallenge) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<BodyResAuthChallenge> for BodyResAuthChallenge
impl PartialEq<BodyResAuthChallenge> for BodyResAuthChallenge
source§fn eq(&self, other: &BodyResAuthChallenge) -> bool
fn eq(&self, other: &BodyResAuthChallenge) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<BodyResAuthChallenge> for BodyResAuthChallenge
impl PartialOrd<BodyResAuthChallenge> for BodyResAuthChallenge
source§fn partial_cmp(&self, other: &BodyResAuthChallenge) -> Option<Ordering>
fn partial_cmp(&self, other: &BodyResAuthChallenge) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for BodyResAuthChallenge
impl Serialize for BodyResAuthChallenge
impl Eq for BodyResAuthChallenge
impl StructuralEq for BodyResAuthChallenge
impl StructuralPartialEq for BodyResAuthChallenge
Auto Trait Implementations§
impl RefUnwindSafe for BodyResAuthChallenge
impl Send for BodyResAuthChallenge
impl Sync for BodyResAuthChallenge
impl Unpin for BodyResAuthChallenge
impl UnwindSafe for BodyResAuthChallenge
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