#[repr(C)]pub struct CFMTcMessageArray {
pub items: *mut CFMTcMessage,
pub count: u32,
}Expand description
Heap allocation returned by cfm_tc_session_round for the outgoing
messages array. The framework owns the backing storage; the caller
frees the whole bundle with cfm_tc_messages_destroy.
Fields§
§items: *mut CFMTcMessage§count: u32Auto Trait Implementations§
impl !Send for CFMTcMessageArray
impl !Sync for CFMTcMessageArray
impl Freeze for CFMTcMessageArray
impl RefUnwindSafe for CFMTcMessageArray
impl Unpin for CFMTcMessageArray
impl UnsafeUnpin for CFMTcMessageArray
impl UnwindSafe for CFMTcMessageArray
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