Struct s2n_quic_core::frame::max_stream_data::MaxStreamData
source · pub struct MaxStreamData {
pub stream_id: VarInt,
pub maximum_stream_data: VarInt,
}Fields§
§stream_id: VarIntThe stream ID of the stream that is affected encoded as a variable-length integer.
maximum_stream_data: VarIntA variable-length integer indicating the maximum amount of data that can be sent on the identified stream, in units of bytes.
Implementations§
Trait Implementations§
source§impl AckElicitable for MaxStreamData
impl AckElicitable for MaxStreamData
fn ack_elicitation(&self) -> AckElicitation
source§impl Clone for MaxStreamData
impl Clone for MaxStreamData
source§fn clone(&self) -> MaxStreamData
fn clone(&self) -> MaxStreamData
Returns a copy 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 CongestionControlled for MaxStreamData
impl CongestionControlled for MaxStreamData
fn is_congestion_controlled(&self) -> bool
source§impl Debug for MaxStreamData
impl Debug for MaxStreamData
source§impl<'a> DecoderParameterizedValue<'a> for MaxStreamData
impl<'a> DecoderParameterizedValue<'a> for MaxStreamData
type Parameter = u8
fn decode_parameterized( _tag: Self::Parameter, buffer: DecoderBuffer<'a> ) -> DecoderBufferResult<'a, Self>
source§impl<'a> DecoderParameterizedValueMut<'a> for MaxStreamData
impl<'a> DecoderParameterizedValueMut<'a> for MaxStreamData
type Parameter = u8
fn decode_parameterized_mut( _tag: Self::Parameter, buffer: DecoderBufferMut<'a> ) -> DecoderBufferMutResult<'a, Self>
source§impl EncoderValue for MaxStreamData
impl EncoderValue for MaxStreamData
source§fn 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
source§fn encoding_size(&self) -> usize
fn encoding_size(&self) -> usize
Returns the encoding size with no buffer constrains
source§fn encoding_size_for_encoder<E>(&self, encoder: &E) -> usizewhere
E: Encoder,
fn encoding_size_for_encoder<E>(&self, encoder: &E) -> usizewhere E: Encoder,
Returns the encoding size for the given encoder’s capacity
source§fn encode_with_len_prefix<Len, E>(&self, encoder: &mut E)where
Len: TryFrom<usize> + EncoderValue,
E: Encoder,
Self: Sized,
<Len as TryFrom<usize>>::Error: Debug,
fn encode_with_len_prefix<Len, E>(&self, encoder: &mut E)where Len: TryFrom<usize> + EncoderValue, E: Encoder, Self: Sized, <Len as TryFrom<usize>>::Error: Debug,
Encodes the value into the encoder with a prefix of
Lenfn encode_to_vec(&self) -> Vec<u8, Global>
source§impl<'a, AckRanges, Data> From<MaxStreamData> for Frame<'a, AckRanges, Data>
impl<'a, AckRanges, Data> From<MaxStreamData> for Frame<'a, AckRanges, Data>
source§fn from(v: MaxStreamData) -> Frame<'a, AckRanges, Data>
fn from(v: MaxStreamData) -> Frame<'a, AckRanges, Data>
Converts to this type from the input type.
source§impl IntoEvent<Frame> for &MaxStreamData
impl IntoEvent<Frame> for &MaxStreamData
fn into_event(self) -> Frame
source§impl PartialEq<MaxStreamData> for MaxStreamData
impl PartialEq<MaxStreamData> for MaxStreamData
source§fn eq(&self, other: &MaxStreamData) -> bool
fn eq(&self, other: &MaxStreamData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Probing for MaxStreamData
impl Probing for MaxStreamData
fn path_validation(&self) -> Probe
impl Copy for MaxStreamData
impl Eq for MaxStreamData
impl StructuralEq for MaxStreamData
impl StructuralPartialEq for MaxStreamData
Auto Trait Implementations§
impl RefUnwindSafe for MaxStreamData
impl Send for MaxStreamData
impl Sync for MaxStreamData
impl Unpin for MaxStreamData
impl UnwindSafe for MaxStreamData
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> PacketPayloadEncoder for Twhere
T: EncoderValue,
impl<T> PacketPayloadEncoder for Twhere T: EncoderValue,
source§fn encoding_size_hint<E>(&mut self, encoder: &E, minimum_len: usize) -> usizewhere
E: Encoder,
fn encoding_size_hint<E>(&mut self, encoder: &E, minimum_len: usize) -> usizewhere 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.