pub struct PathResponseFrame {
pub data: [u8; 8],
}Expand description
A PATH_RESPONSE frame following Section 19.18.
Response to a PATH_CHALLENGE frame.
Fields§
§data: [u8; 8]The same data as in the Data field of the PATH_CHALLENGE frame.
Implementations§
Trait Implementations§
Source§impl Clone for PathResponseFrame
impl Clone for PathResponseFrame
Source§fn clone(&self) -> PathResponseFrame
fn clone(&self) -> PathResponseFrame
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 Codec for PathResponseFrame
impl Codec for PathResponseFrame
impl Copy for PathResponseFrame
Source§impl Debug for PathResponseFrame
impl Debug for PathResponseFrame
impl Eq for PathResponseFrame
Source§impl Hash for PathResponseFrame
impl Hash for PathResponseFrame
Source§impl Ord for PathResponseFrame
impl Ord for PathResponseFrame
Source§fn cmp(&self, other: &PathResponseFrame) -> Ordering
fn cmp(&self, other: &PathResponseFrame) -> Ordering
1.21.0 (const: unstable) · 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 for PathResponseFrame
impl PartialEq for PathResponseFrame
Source§impl PartialOrd for PathResponseFrame
impl PartialOrd for PathResponseFrame
impl StructuralPartialEq for PathResponseFrame
Auto Trait Implementations§
impl Freeze for PathResponseFrame
impl RefUnwindSafe for PathResponseFrame
impl Send for PathResponseFrame
impl Sync for PathResponseFrame
impl Unpin for PathResponseFrame
impl UnsafeUnpin for PathResponseFrame
impl UnwindSafe for PathResponseFrame
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