#[repr(C)]pub struct uct_listener_attr {
pub field_mask: u64,
pub sockaddr: sockaddr_storage,
}Expand description
@ingroup UCT_CLIENT_SERVER @brief UCT listener attributes, capabilities and limitations.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref uct_listener_attr_field. Fields not specified by this mask will be ignored.
sockaddr: sockaddr_storageSockaddr on which this listener is listening.
Trait Implementations§
Source§impl Clone for uct_listener_attr
impl Clone for uct_listener_attr
Source§fn clone(&self) -> uct_listener_attr
fn clone(&self) -> uct_listener_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 uct_listener_attr
impl Debug for uct_listener_attr
impl Copy for uct_listener_attr
Auto Trait Implementations§
impl Freeze for uct_listener_attr
impl RefUnwindSafe for uct_listener_attr
impl Send for uct_listener_attr
impl Sync for uct_listener_attr
impl Unpin for uct_listener_attr
impl UnwindSafe for uct_listener_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