Struct mpc_engine::party::ChannelConfig
source · pub struct ChannelConfig {
pub id: usize,
/* private fields */
}
Expand description
Collects all party communication channels.
It includes
listen
: The party’s own message receiver handleevaluator
: The sender handle for the designated evaluator partyparties
: All other parties’ sender handles, ordered by theirid
sbroadcast
: The sender handle of the broadcast utilityid
: The owning partiesid
Fields§
§id: usize
The channel config is for the party of this ID.
Auto Trait Implementations§
impl Freeze for ChannelConfig
impl RefUnwindSafe for ChannelConfig
impl Send for ChannelConfig
impl !Sync for ChannelConfig
impl Unpin for ChannelConfig
impl UnwindSafe for ChannelConfig
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