Struct s2n_quic_core::frame::reset_stream::ResetStream
source · [−]pub struct ResetStream {
pub stream_id: VarInt,
pub application_error_code: VarInt,
pub final_size: VarInt,
}Fields
stream_id: VarIntA variable-length integer encoding of the Stream ID of the stream being terminated.
application_error_code: VarIntA variable-length integer containing the application protocol error code which indicates why the stream is being closed.
final_size: VarIntA variable-length integer indicating the final size of the stream by the RESET_STREAM sender, in unit of bytes.
Implementations
sourceimpl ResetStream
impl ResetStream
Trait Implementations
sourceimpl AckElicitable for ResetStream
impl AckElicitable for ResetStream
fn ack_elicitation(&self) -> AckElicitation
sourceimpl Clone for ResetStream
impl Clone for ResetStream
sourcefn clone(&self) -> ResetStream
fn clone(&self) -> ResetStream
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl CongestionControlled for ResetStream
impl CongestionControlled for ResetStream
fn is_congestion_controlled(&self) -> bool
sourceimpl Debug for ResetStream
impl Debug for ResetStream
sourceimpl<'a> DecoderParameterizedValue<'a> for ResetStream
impl<'a> DecoderParameterizedValue<'a> for ResetStream
type Parameter = u8
fn decode_parameterized(
_tag: Self::Parameter,
buffer: DecoderBuffer<'a>
) -> DecoderBufferResult<'a, Self>
sourceimpl<'a> DecoderParameterizedValueMut<'a> for ResetStream
impl<'a> DecoderParameterizedValueMut<'a> for ResetStream
type Parameter = u8
fn decode_parameterized_mut(
_tag: Self::Parameter,
buffer: DecoderBufferMut<'a>
) -> DecoderBufferMutResult<'a, Self>
sourceimpl EncoderValue for ResetStream
impl EncoderValue for ResetStream
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, AckRanges, Data> From<ResetStream> for Frame<'a, AckRanges, Data>
impl<'a, AckRanges, Data> From<ResetStream> for Frame<'a, AckRanges, Data>
sourcefn from(v: ResetStream) -> Frame<'a, AckRanges, Data>
fn from(v: ResetStream) -> Frame<'a, AckRanges, Data>
Converts to this type from the input type.
sourceimpl IntoEvent<Frame> for &ResetStream
impl IntoEvent<Frame> for &ResetStream
fn into_event(self) -> Frame
sourceimpl PartialEq<ResetStream> for ResetStream
impl PartialEq<ResetStream> for ResetStream
sourcefn eq(&self, other: &ResetStream) -> bool
fn eq(&self, other: &ResetStream) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ResetStream) -> bool
fn ne(&self, other: &ResetStream) -> bool
This method tests for !=.
sourceimpl Probing for ResetStream
impl Probing for ResetStream
fn path_validation(&self) -> Probe
impl Copy for ResetStream
impl Eq for ResetStream
impl StructuralEq for ResetStream
impl StructuralPartialEq for ResetStream
Auto Trait Implementations
impl RefUnwindSafe for ResetStream
impl Send for ResetStream
impl Sync for ResetStream
impl Unpin for ResetStream
impl UnwindSafe for ResetStream
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