Enum async_rdma::ConnectionType
source · pub enum ConnectionType {
RCSocket,
RCCM,
RCIBV,
}
Expand description
Method of establishing a connection
Variants§
RCSocket
Establish reliable connection through Socket
APIs.
RCCM
Establish reliable connection through CM
APIs.
RCIBV
Establish reliable connection through IBV
APIs.
Trait Implementations§
source§impl Clone for ConnectionType
impl Clone for ConnectionType
source§fn clone(&self) -> ConnectionType
fn clone(&self) -> ConnectionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ConnectionType
impl Debug for ConnectionType
source§impl PartialEq<ConnectionType> for ConnectionType
impl PartialEq<ConnectionType> for ConnectionType
source§fn eq(&self, other: &ConnectionType) -> bool
fn eq(&self, other: &ConnectionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.