struct HeaderPrefix(u8);Expand description
Sphinx header byte prefix
§Layout (MSB first)
Version (3 bits), No Ack flag (1 bit), Reply flag (1 bit), Path position (3 bits)
Tuple Fields§
§0: u8Implementations§
Source§impl HeaderPrefix
impl HeaderPrefix
Trait Implementations§
Source§impl Clone for HeaderPrefix
impl Clone for HeaderPrefix
Source§fn clone(&self) -> HeaderPrefix
fn clone(&self) -> HeaderPrefix
Returns a duplicate 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 HeaderPrefix
impl Debug for HeaderPrefix
Source§impl From<HeaderPrefix> for u8
impl From<HeaderPrefix> for u8
Source§fn from(value: HeaderPrefix) -> Self
fn from(value: HeaderPrefix) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HeaderPrefix
impl PartialEq for HeaderPrefix
Source§impl TryFrom<u8> for HeaderPrefix
impl TryFrom<u8> for HeaderPrefix
impl Copy for HeaderPrefix
impl Eq for HeaderPrefix
impl StructuralPartialEq for HeaderPrefix
Auto Trait Implementations§
impl Freeze for HeaderPrefix
impl RefUnwindSafe for HeaderPrefix
impl Send for HeaderPrefix
impl Sync for HeaderPrefix
impl Unpin for HeaderPrefix
impl UnwindSafe for HeaderPrefix
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more