pub enum EarlyDataOutcome {
Accepted,
RejectedUnknownTicket,
RejectedOversized,
RejectedAead,
RejectedReplay,
}Expand description
0-RTT early-data outcome.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EarlyDataOutcome
impl Clone for EarlyDataOutcome
Source§fn clone(&self) -> EarlyDataOutcome
fn clone(&self) -> EarlyDataOutcome
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 moreimpl Copy for EarlyDataOutcome
Source§impl Debug for EarlyDataOutcome
impl Debug for EarlyDataOutcome
impl Eq for EarlyDataOutcome
Source§impl Hash for EarlyDataOutcome
impl Hash for EarlyDataOutcome
Source§impl PartialEq for EarlyDataOutcome
impl PartialEq for EarlyDataOutcome
Source§fn eq(&self, other: &EarlyDataOutcome) -> bool
fn eq(&self, other: &EarlyDataOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EarlyDataOutcome
Auto Trait Implementations§
impl Freeze for EarlyDataOutcome
impl RefUnwindSafe for EarlyDataOutcome
impl Send for EarlyDataOutcome
impl Sync for EarlyDataOutcome
impl Unpin for EarlyDataOutcome
impl UnsafeUnpin for EarlyDataOutcome
impl UnwindSafe for EarlyDataOutcome
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