Struct s2n_quic_core::frame::path_response::PathResponse
source · [−]Fields
data: &'a [u8; 8]This 8-byte field contains arbitrary data.
Implementations
sourceimpl<'a> PathResponse<'a>
impl<'a> PathResponse<'a>
Trait Implementations
sourceimpl AckElicitable for PathResponse<'_>
impl AckElicitable for PathResponse<'_>
fn ack_elicitation(&self) -> AckElicitation
sourceimpl CongestionControlled for PathResponse<'_>
impl CongestionControlled for PathResponse<'_>
fn is_congestion_controlled(&self) -> bool
sourceimpl<'a> Debug for PathResponse<'a>
impl<'a> Debug for PathResponse<'a>
sourceimpl<'a> DecoderParameterizedValue<'a> for PathResponse<'a>
impl<'a> DecoderParameterizedValue<'a> for PathResponse<'a>
type Parameter = u8
fn decode_parameterized(
_tag: Self::Parameter,
buffer: DecoderBuffer<'a>
) -> DecoderBufferResult<'a, Self>
sourceimpl<'a> DecoderParameterizedValueMut<'a> for PathResponse<'a>
impl<'a> DecoderParameterizedValueMut<'a> for PathResponse<'a>
type Parameter = u8
fn decode_parameterized_mut(
_tag: Self::Parameter,
buffer: DecoderBufferMut<'a>
) -> DecoderBufferMutResult<'a, Self>
sourceimpl<'a> EncoderValue for PathResponse<'a>
impl<'a> EncoderValue for PathResponse<'a>
sourcefn encode_mut<E>(&mut self, encoder: &mut E) where
E: Encoder,
fn encode_mut<E>(&mut self, encoder: &mut E) where
E: Encoder,
Encodes the value into the encoder, while potentially mutating the value itself
sourcefn encoding_size(&self) -> usize
fn encoding_size(&self) -> usize
Returns the encoding size with no buffer constrains
sourcefn encoding_size_for_encoder<E>(&self, encoder: &E) -> usize where
E: Encoder,
fn encoding_size_for_encoder<E>(&self, encoder: &E) -> usize where
E: Encoder,
Returns the encoding size for the given encoder’s capacity
sourceimpl<'a> From<PathChallenge<'a>> for PathResponse<'a>
impl<'a> From<PathChallenge<'a>> for PathResponse<'a>
sourcefn from(path_challenge: PathChallenge<'a>) -> Self
fn from(path_challenge: PathChallenge<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a, AckRanges, Data> From<PathResponse<'a>> for Frame<'a, AckRanges, Data>
impl<'a, AckRanges, Data> From<PathResponse<'a>> for Frame<'a, AckRanges, Data>
sourcefn from(v: PathResponse<'a>) -> Frame<'a, AckRanges, Data>
fn from(v: PathResponse<'a>) -> Frame<'a, AckRanges, Data>
Converts to this type from the input type.
sourceimpl<'a> IntoEvent<Frame> for &PathResponse<'a>
impl<'a> IntoEvent<Frame> for &PathResponse<'a>
fn into_event(self) -> Frame
sourceimpl<'a> PartialEq<PathResponse<'a>> for PathResponse<'a>
impl<'a> PartialEq<PathResponse<'a>> for PathResponse<'a>
sourcefn eq(&self, other: &PathResponse<'a>) -> bool
fn eq(&self, other: &PathResponse<'a>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PathResponse<'a>) -> bool
fn ne(&self, other: &PathResponse<'a>) -> bool
This method tests for !=.
sourceimpl Probing for PathResponse<'_>
impl Probing for PathResponse<'_>
fn path_validation(&self) -> Probe
impl<'a> Eq for PathResponse<'a>
impl<'a> StructuralEq for PathResponse<'a>
impl<'a> StructuralPartialEq for PathResponse<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PathResponse<'a>
impl<'a> Send for PathResponse<'a>
impl<'a> Sync for PathResponse<'a>
impl<'a> Unpin for PathResponse<'a>
impl<'a> UnwindSafe for PathResponse<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> PacketPayloadEncoder for T where
T: EncoderValue,
impl<T> PacketPayloadEncoder for T where
T: EncoderValue,
sourcefn encoding_size_hint<E>(&mut self, encoder: &E, minimum_len: usize) -> usize where
E: Encoder,
fn encoding_size_hint<E>(&mut self, encoder: &E, minimum_len: usize) -> usize where
E: Encoder,
Returns an estimate of the encoding size of the payload. This may be inaccurate from what actually is encoded. Estimates should be less than or equal to what is actually written. Implementations can return 0 to skip encoding. Read more