pub enum RserveConnection {
Tcp(TcpStream),
Unix(UnixStream),
}Variants§
Tcp(TcpStream)
Unix(UnixStream)
Implementations§
Auto Trait Implementations§
impl !Freeze for RserveConnection
impl RefUnwindSafe for RserveConnection
impl Send for RserveConnection
impl Sync for RserveConnection
impl Unpin for RserveConnection
impl UnsafeUnpin for RserveConnection
impl UnwindSafe for RserveConnection
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