#[repr(C)]pub struct ucp_ep_evaluate_perf_param_t {
pub field_mask: u64,
pub message_size: size_t,
}Expand description
@ingroup UCP_ENDPOINT @brief UCP endpoint performance evaluation request attributes.
The structure defines the attributes which characterize the request for performance estimation of a particular endpoint.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref ucp_ep_perf_param_field_t. Fields not specified in this mask will be ignored. Provides ABI compatibility with respect to adding new fields.
message_size: size_tMessage size to use for determining performance. This field must be initialized by the caller.
Trait Implementations§
Source§impl Clone for ucp_ep_evaluate_perf_param_t
impl Clone for ucp_ep_evaluate_perf_param_t
Source§fn clone(&self) -> ucp_ep_evaluate_perf_param_t
fn clone(&self) -> ucp_ep_evaluate_perf_param_t
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 ucp_ep_evaluate_perf_param_t
impl Debug for ucp_ep_evaluate_perf_param_t
impl Copy for ucp_ep_evaluate_perf_param_t
Auto Trait Implementations§
impl Freeze for ucp_ep_evaluate_perf_param_t
impl RefUnwindSafe for ucp_ep_evaluate_perf_param_t
impl Send for ucp_ep_evaluate_perf_param_t
impl Sync for ucp_ep_evaluate_perf_param_t
impl Unpin for ucp_ep_evaluate_perf_param_t
impl UnwindSafe for ucp_ep_evaluate_perf_param_t
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