pub enum MaybeUpgradeH3 {
Quic(StreamUniRemoteQuic),
H3(StreamUniRemoteH3),
}Expand description
A result of attempt to upgrade a UniRemote stream.
Variants§
Quic(StreamUniRemoteQuic)
Stream cannot be upgraded. Not enough data.
H3(StreamUniRemoteH3)
Stream upgraded to HTTP3.
Auto Trait Implementations§
impl Freeze for MaybeUpgradeH3
impl RefUnwindSafe for MaybeUpgradeH3
impl Send for MaybeUpgradeH3
impl Sync for MaybeUpgradeH3
impl Unpin for MaybeUpgradeH3
impl UnwindSafe for MaybeUpgradeH3
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