#[repr(C)]pub struct ucp_worker_address_attr {
pub field_mask: u64,
pub worker_uid: u64,
}Expand description
@ingroup UCP_WORKER @brief UCP worker address attributes.
The structure defines the attributes of the particular worker address.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref ucp_worker_address_attr_field. Fields not specified in this mask will be ignored. Provides ABI compatibility with respect to adding new fields.
worker_uid: u64Unique id of the worker this address belongs to.
Trait Implementations§
Source§impl Clone for ucp_worker_address_attr
impl Clone for ucp_worker_address_attr
Source§fn clone(&self) -> ucp_worker_address_attr
fn clone(&self) -> ucp_worker_address_attr
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_worker_address_attr
impl Debug for ucp_worker_address_attr
impl Copy for ucp_worker_address_attr
Auto Trait Implementations§
impl Freeze for ucp_worker_address_attr
impl RefUnwindSafe for ucp_worker_address_attr
impl Send for ucp_worker_address_attr
impl Sync for ucp_worker_address_attr
impl Unpin for ucp_worker_address_attr
impl UnwindSafe for ucp_worker_address_attr
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