pub enum QuicConnectionEvent {
StreamR(QuicStream<true, false>),
StreamRW(QuicStream<true, true>),
}
Variants§
StreamR(QuicStream<true, false>)
StreamRW(QuicStream<true, true>)
Implementations§
Source§impl QuicConnectionEvent
impl QuicConnectionEvent
pub fn stream_r(self) -> Option<QuicStream<true, false>>
pub fn stream_rw(self) -> Option<QuicStream<true, true>>
Auto Trait Implementations§
impl Freeze for QuicConnectionEvent
impl !RefUnwindSafe for QuicConnectionEvent
impl Send for QuicConnectionEvent
impl Sync for QuicConnectionEvent
impl Unpin for QuicConnectionEvent
impl !UnwindSafe for QuicConnectionEvent
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