pub struct ConnParam {
pub responder_resources: u8,
pub initiator_depth: u8,
pub retry_count: u8,
pub rnr_retry_count: u8,
}Expand description
Connection parameters for connect / accept.
Fields§
§responder_resources: u8Responder resources (max incoming RDMA read/atomic).
initiator_depth: u8Initiator depth (max outstanding RDMA read/atomic).
retry_count: u8Retry count.
rnr_retry_count: u8RNR retry count (7 = infinite).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConnParam
impl RefUnwindSafe for ConnParam
impl Send for ConnParam
impl Sync for ConnParam
impl Unpin for ConnParam
impl UnsafeUnpin for ConnParam
impl UnwindSafe for ConnParam
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