#[repr(C)]pub struct dv_endpoint {
pub handle: *mut c_void,
pub session: *mut dv_session_t,
pub num_ep: c_int,
pub grp_type: dv_endpoint_group_type_t,
pub ep_info_list: *mut *mut dv_endpoint_info_t,
}Expand description
Endpoint/Endpoint Group object
Fields§
§handle: *mut c_void< endpoint private handle, managed by client library
session: *mut dv_session_t< session handle on which endpoint is queried
num_ep: c_int< number of endpoints in the group
grp_type: dv_endpoint_group_type_t< endpoint group type
ep_info_list: *mut *mut dv_endpoint_info_t< list of configuration for all the endpoint(s) in the group
Trait Implementations§
Source§impl Clone for dv_endpoint
impl Clone for dv_endpoint
Source§fn clone(&self) -> dv_endpoint
fn clone(&self) -> dv_endpoint
Returns a duplicate 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 dv_endpoint
impl Debug for dv_endpoint
impl Copy for dv_endpoint
Auto Trait Implementations§
impl Freeze for dv_endpoint
impl RefUnwindSafe for dv_endpoint
impl !Send for dv_endpoint
impl !Sync for dv_endpoint
impl Unpin for dv_endpoint
impl UnsafeUnpin for dv_endpoint
impl UnwindSafe for dv_endpoint
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