pub struct LocalId { /* private fields */ }Expand description
Uniquely identifies a QUIC connection between 2 peers
Implementations§
Trait Implementations§
Source§impl<'a> DecoderValue<'a> for LocalId
impl<'a> DecoderValue<'a> for LocalId
fn decode(buffer: DecoderBuffer<'a>) -> DecoderBufferResult<'a, Self>
Source§impl<'a> DecoderValueMut<'a> for LocalId
impl<'a> DecoderValueMut<'a> for LocalId
fn decode_mut(buffer: DecoderBufferMut<'a>) -> DecoderBufferMutResult<'a, Self>
Source§impl EncoderValue for LocalId
impl EncoderValue for LocalId
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)
fn encode_with_len_prefix<Len, E>(&self, encoder: &mut E)
Encodes the value into the encoder with a prefix of
Lenfn encode_to_vec(&self) -> Vec<u8> ⓘ
Source§impl From<LocalId> for InitialSourceConnectionId
impl From<LocalId> for InitialSourceConnectionId
Source§impl From<LocalId> for UnboundedId
impl From<LocalId> for UnboundedId
Source§impl<'a> IntoEvent<ConnectionId<'a>> for &'a LocalId
impl<'a> IntoEvent<ConnectionId<'a>> for &'a LocalId
fn into_event(self) -> ConnectionId<'a>
Source§impl Ord for LocalId
impl Ord for LocalId
Source§impl PartialEq<LocalId> for RetrySourceConnectionId
impl PartialEq<LocalId> for RetrySourceConnectionId
Source§impl PartialOrd<LocalId> for RetrySourceConnectionId
impl PartialOrd<LocalId> for RetrySourceConnectionId
Source§impl PartialOrd for LocalId
impl PartialOrd for LocalId
Source§impl TryFrom<LocalId> for RetrySourceConnectionId
impl TryFrom<LocalId> for RetrySourceConnectionId
impl Copy for LocalId
impl Eq for LocalId
Auto Trait Implementations§
impl Freeze for LocalId
impl RefUnwindSafe for LocalId
impl Send for LocalId
impl Sync for LocalId
impl Unpin for LocalId
impl UnwindSafe for LocalId
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,
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.