Struct s2n_quic_core::event::api::ConnectionIdUpdated
source · #[non_exhaustive]pub struct ConnectionIdUpdated<'a> {
pub path_id: u64,
pub cid_consumer: Location,
pub previous: ConnectionId<'a>,
pub current: ConnectionId<'a>,
}Expand description
ConnectionId updated
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path_id: u64§cid_consumer: LocationThe endpoint that updated its connection id
previous: ConnectionId<'a>§current: ConnectionId<'a>Trait Implementations§
source§impl<'a> Clone for ConnectionIdUpdated<'a>
impl<'a> Clone for ConnectionIdUpdated<'a>
source§fn clone(&self) -> ConnectionIdUpdated<'a>
fn clone(&self) -> ConnectionIdUpdated<'a>
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<'a> Debug for ConnectionIdUpdated<'a>
impl<'a> Debug for ConnectionIdUpdated<'a>
source§impl<'a> Event for ConnectionIdUpdated<'a>
impl<'a> Event for ConnectionIdUpdated<'a>
source§impl<'a> IntoEvent<ConnectionIdUpdated<'a>> for ConnectionIdUpdated<'a>
impl<'a> IntoEvent<ConnectionIdUpdated<'a>> for ConnectionIdUpdated<'a>
fn into_event(self) -> ConnectionIdUpdated<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ConnectionIdUpdated<'a>
impl<'a> Send for ConnectionIdUpdated<'a>
impl<'a> Sync for ConnectionIdUpdated<'a>
impl<'a> Unpin for ConnectionIdUpdated<'a>
impl<'a> UnwindSafe for ConnectionIdUpdated<'a>
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