pub struct BodyReqAuthSuccess {
pub data: CBytes,
}
Expand description
BodyReqAuthSuccess
is a envelope that represents a successful authentication response.
Fields§
§data: CBytes
Trait Implementations§
source§impl Clone for BodyReqAuthSuccess
impl Clone for BodyReqAuthSuccess
source§fn clone(&self) -> BodyReqAuthSuccess
fn clone(&self) -> BodyReqAuthSuccess
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 BodyReqAuthSuccess
impl Debug for BodyReqAuthSuccess
source§impl FromCursor for BodyReqAuthSuccess
impl FromCursor for BodyReqAuthSuccess
source§fn from_cursor(
cursor: &mut Cursor<&[u8]>,
version: Version
) -> Result<BodyReqAuthSuccess>
fn from_cursor( cursor: &mut Cursor<&[u8]>, version: Version ) -> Result<BodyReqAuthSuccess>
Tries to parse Self from a cursor of bytes.
source§impl Hash for BodyReqAuthSuccess
impl Hash for BodyReqAuthSuccess
source§impl Ord for BodyReqAuthSuccess
impl Ord for BodyReqAuthSuccess
source§fn cmp(&self, other: &BodyReqAuthSuccess) -> Ordering
fn cmp(&self, other: &BodyReqAuthSuccess) -> 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<BodyReqAuthSuccess> for BodyReqAuthSuccess
impl PartialEq<BodyReqAuthSuccess> for BodyReqAuthSuccess
source§fn eq(&self, other: &BodyReqAuthSuccess) -> bool
fn eq(&self, other: &BodyReqAuthSuccess) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<BodyReqAuthSuccess> for BodyReqAuthSuccess
impl PartialOrd<BodyReqAuthSuccess> for BodyReqAuthSuccess
source§fn partial_cmp(&self, other: &BodyReqAuthSuccess) -> Option<Ordering>
fn partial_cmp(&self, other: &BodyReqAuthSuccess) -> 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 more