pub enum ClientStream {
Http(TcpStream),
Https(Box<StreamOwned<ClientConnection, TcpStream>>),
}Variants§
Http(TcpStream)
Https(Box<StreamOwned<ClientConnection, TcpStream>>)
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ClientStream
impl !UnwindSafe for ClientStream
impl Freeze for ClientStream
impl Send for ClientStream
impl Sync for ClientStream
impl Unpin for ClientStream
impl UnsafeUnpin for ClientStream
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