Struct s2n_quic_core::connection::id::UnboundedId
source · [−]pub struct UnboundedId { /* private fields */ }Expand description
Uniquely identifies a QUIC connection between 2 peers
Implementations
sourceimpl UnboundedId
impl UnboundedId
sourcepub fn try_from_bytes(bytes: &[u8]) -> Option<UnboundedId>
pub fn try_from_bytes(bytes: &[u8]) -> Option<UnboundedId>
Creates a connection ID from a byte array.
If the passed byte array exceeds the maximum allowed length for
Connection IDs (20 bytes in QUIC v1) None will be returned.
All other input values are valid.
Trait Implementations
sourceimpl AsRef<[u8]> for UnboundedId
impl AsRef<[u8]> for UnboundedId
sourceimpl Clone for UnboundedId
impl Clone for UnboundedId
sourcefn clone(&self) -> UnboundedId
fn clone(&self) -> UnboundedId
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 Debug for UnboundedId
impl Debug for UnboundedId
sourceimpl<'a> DecoderValue<'a> for UnboundedId
impl<'a> DecoderValue<'a> for UnboundedId
fn decode(buffer: DecoderBuffer<'a>) -> DecoderBufferResult<'a, Self>
sourceimpl<'a> DecoderValueMut<'a> for UnboundedId
impl<'a> DecoderValueMut<'a> for UnboundedId
fn decode_mut(buffer: DecoderBufferMut<'a>) -> DecoderBufferMutResult<'a, Self>
sourceimpl Default for UnboundedId
impl Default for UnboundedId
sourceimpl EncoderValue for UnboundedId
impl EncoderValue for UnboundedId
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 From<InitialId> for UnboundedId
impl From<InitialId> for UnboundedId
sourceimpl From<LocalId> for UnboundedId
impl From<LocalId> for UnboundedId
sourceimpl From<PeerId> for UnboundedId
impl From<PeerId> for UnboundedId
sourceimpl Hash for UnboundedId
impl Hash for UnboundedId
sourceimpl<'a> IntoEvent<ConnectionId<'a>> for &'a UnboundedId
impl<'a> IntoEvent<ConnectionId<'a>> for &'a UnboundedId
fn into_event(self) -> ConnectionId<'a>
sourceimpl Ord for UnboundedId
impl Ord for UnboundedId
sourceimpl PartialEq<UnboundedId> for UnboundedId
impl PartialEq<UnboundedId> for UnboundedId
sourcefn eq(&self, other: &UnboundedId) -> bool
fn eq(&self, other: &UnboundedId) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UnboundedId) -> bool
fn ne(&self, other: &UnboundedId) -> bool
This method tests for !=.
sourceimpl PartialOrd<UnboundedId> for UnboundedId
impl PartialOrd<UnboundedId> for UnboundedId
sourcefn partial_cmp(&self, other: &UnboundedId) -> Option<Ordering>
fn partial_cmp(&self, other: &UnboundedId) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl PartialOrd<UnboundedId> for InitialSourceConnectionId
impl PartialOrd<UnboundedId> for InitialSourceConnectionId
sourcefn partial_cmp(&self, value: &UnboundedId) -> Option<Ordering>
fn partial_cmp(&self, value: &UnboundedId) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl TryFrom<&[u8]> for UnboundedId
impl TryFrom<&[u8]> for UnboundedId
sourceimpl TryFrom<UnboundedId> for InitialSourceConnectionId
impl TryFrom<UnboundedId> for InitialSourceConnectionId
type Error = ValidationError
type Error = ValidationError
The type returned in the event of a conversion error.
sourcefn try_from(value: UnboundedId) -> Result<Self, Self::Error>
fn try_from(value: UnboundedId) -> Result<Self, Self::Error>
Performs the conversion.
impl Copy for UnboundedId
impl Eq for UnboundedId
impl StructuralEq for UnboundedId
impl StructuralPartialEq for UnboundedId
Auto Trait Implementations
impl RefUnwindSafe for UnboundedId
impl Send for UnboundedId
impl Sync for UnboundedId
impl Unpin for UnboundedId
impl UnwindSafe for UnboundedId
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