pub struct ParsedPathValidation {
pub path_id: u8,
pub payload: [u8; 32],
}Expand description
A parsed incoming PATH_VALIDATION frame, with all fields the receiver needs to feed into the state machine.
Fields§
§path_id: u8§payload: [u8; 32]Trait Implementations§
Source§impl Clone for ParsedPathValidation
impl Clone for ParsedPathValidation
Source§fn clone(&self) -> ParsedPathValidation
fn clone(&self) -> ParsedPathValidation
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 Debug for ParsedPathValidation
impl Debug for ParsedPathValidation
impl Eq for ParsedPathValidation
Source§impl PartialEq for ParsedPathValidation
impl PartialEq for ParsedPathValidation
Source§fn eq(&self, other: &ParsedPathValidation) -> bool
fn eq(&self, other: &ParsedPathValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParsedPathValidation
Auto Trait Implementations§
impl Freeze for ParsedPathValidation
impl RefUnwindSafe for ParsedPathValidation
impl Send for ParsedPathValidation
impl Sync for ParsedPathValidation
impl Unpin for ParsedPathValidation
impl UnsafeUnpin for ParsedPathValidation
impl UnwindSafe for ParsedPathValidation
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