pub enum Protocol {
IntraProcess,
SharedMemory,
TCPIP,
}Expand description
Transport protocol used to communicate between two Link end points.
Variants
IntraProcess
Protocol type optimized for communication between two Link end points
from within the same OS process.
SharedMemory
Protocol type optimized for communication between two Link end points
from the same machine — but not necessarily in the same OS process — using shared
memory.
TCPIP
Protocol type for communication between two Link end points reachable
across a network connection.
Trait Implementations
impl Eq for Protocol
impl StructuralEq for Protocol
impl StructuralPartialEq for Protocol
Auto Trait Implementations
impl RefUnwindSafe for Protocol
impl Send for Protocol
impl Sync for Protocol
impl Unpin for Protocol
impl UnwindSafe for Protocol
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more