Enum async_rdma::PollingTriggerType
source · pub enum PollingTriggerType {
Automatic,
Manual,
}
Expand description
Type of polling trigger.
Variants§
Automatic
A trigger that listen to the event channel of cq and drive polling asynchronously and automatically.
Manual
A trigger that uses the mpsc receiver to wait for the sender’s msg before polling.
Only trigger polling when user send ()
through tx end manully.
Trait Implementations§
source§impl Clone for PollingTriggerType
impl Clone for PollingTriggerType
source§fn clone(&self) -> PollingTriggerType
fn clone(&self) -> PollingTriggerType
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 more