pub enum Remote {
Tcp(u16),
Unix(String),
LocalAbstract(String),
Jwp(u16),
}Expand description
represents the options to connect
Variants§
Tcp(u16)
TCP localhost:
Unix(String)
Unix local domain socket on device
LocalAbstract(String)
Unix abstract local domain socket on device
Jwp(u16)
JDWP thread on VM process
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Remote
impl RefUnwindSafe for Remote
impl Send for Remote
impl Sync for Remote
impl Unpin for Remote
impl UnwindSafe for Remote
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