#[repr(C)]pub struct CFMTcMessage {
pub from_party_id: *const c_char,
pub to_party_id: *const c_char,
pub round: u8,
pub payload: *const u8,
pub payload_len: u32,
}Expand description
One inter-party message, C view. to_party_id == NULL means
broadcast.
Fields§
§from_party_id: *const c_char§to_party_id: *const c_char§round: u8§payload: *const u8§payload_len: u32Auto Trait Implementations§
impl !Send for CFMTcMessage
impl !Sync for CFMTcMessage
impl Freeze for CFMTcMessage
impl RefUnwindSafe for CFMTcMessage
impl Unpin for CFMTcMessage
impl UnsafeUnpin for CFMTcMessage
impl UnwindSafe for CFMTcMessage
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