pub struct SendSender {
pub from_pid: Pid,
pub to_pid: Pid,
pub message: Term,
}Expand description
This control message replaces the Send control message and will be sent when the distribution flag DistributionFlags::SEND_SENDER has been negotiated in the connection setup handshake.
Fields§
§from_pid: Pid§to_pid: Pid§message: TermTrait Implementations§
Source§impl Clone for SendSender
impl Clone for SendSender
Source§fn clone(&self) -> SendSender
fn clone(&self) -> SendSender
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 SendSender
impl Debug for SendSender
Source§impl PartialEq for SendSender
impl PartialEq for SendSender
impl StructuralPartialEq for SendSender
Auto Trait Implementations§
impl Freeze for SendSender
impl RefUnwindSafe for SendSender
impl Send for SendSender
impl Sync for SendSender
impl Unpin for SendSender
impl UnsafeUnpin for SendSender
impl UnwindSafe for SendSender
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