Struct s2n_quic_core::event::api::PathCreated
source · #[non_exhaustive]pub struct PathCreated<'a> {
pub active: Path<'a>,
pub new: Path<'a>,
}Expand description
A new path was created
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.active: Path<'a>§new: Path<'a>Trait Implementations§
source§impl<'a> Clone for PathCreated<'a>
impl<'a> Clone for PathCreated<'a>
source§fn clone(&self) -> PathCreated<'a>
fn clone(&self) -> PathCreated<'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 PathCreated<'a>
impl<'a> Debug for PathCreated<'a>
source§impl<'a> IntoEvent<PathCreated<'a>> for PathCreated<'a>
impl<'a> IntoEvent<PathCreated<'a>> for PathCreated<'a>
fn into_event(self) -> PathCreated<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for PathCreated<'a>
impl<'a> Send for PathCreated<'a>
impl<'a> Sync for PathCreated<'a>
impl<'a> Unpin for PathCreated<'a>
impl<'a> UnwindSafe for PathCreated<'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