pub enum PathValidationKind {
Challenge,
Response,
}Expand description
Whether a frame carries an outgoing challenge or an echoed response. The two are wire-identical; the distinction lives in the sender state machine.
Variants§
Trait Implementations§
Source§impl Clone for PathValidationKind
impl Clone for PathValidationKind
Source§fn clone(&self) -> PathValidationKind
fn clone(&self) -> PathValidationKind
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 PathValidationKind
Source§impl Debug for PathValidationKind
impl Debug for PathValidationKind
impl Eq for PathValidationKind
Source§impl PartialEq for PathValidationKind
impl PartialEq for PathValidationKind
Source§fn eq(&self, other: &PathValidationKind) -> bool
fn eq(&self, other: &PathValidationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PathValidationKind
Auto Trait Implementations§
impl Freeze for PathValidationKind
impl RefUnwindSafe for PathValidationKind
impl Send for PathValidationKind
impl Sync for PathValidationKind
impl Unpin for PathValidationKind
impl UnsafeUnpin for PathValidationKind
impl UnwindSafe for PathValidationKind
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