#[repr(C)]pub struct CFMTcPartyList {
pub party_ids: *const *const c_char,
pub transport_endpoints: *const *const c_char,
pub count: u32,
}Expand description
Roster of parties, C view.
party_ids and transport_endpoints are parallel arrays of
NUL-terminated C strings. transport_endpoints[i] may be NULL when
party i has no network endpoint (in-process sessions).
Fields§
§party_ids: *const *const c_char§transport_endpoints: *const *const c_char§count: u32Auto Trait Implementations§
impl !Send for CFMTcPartyList
impl !Sync for CFMTcPartyList
impl Freeze for CFMTcPartyList
impl RefUnwindSafe for CFMTcPartyList
impl Unpin for CFMTcPartyList
impl UnsafeUnpin for CFMTcPartyList
impl UnwindSafe for CFMTcPartyList
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