pub struct MailboxSender { /* private fields */ }Expand description
The sending end of a process mailbox.
This can be cloned and shared between processes to send messages to the mailbox owner.
Implementations§
Trait Implementations§
Source§impl Clone for MailboxSender
impl Clone for MailboxSender
Source§fn clone(&self) -> MailboxSender
fn clone(&self) -> MailboxSender
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MailboxSender
impl RefUnwindSafe for MailboxSender
impl Send for MailboxSender
impl Sync for MailboxSender
impl Unpin for MailboxSender
impl UnsafeUnpin for MailboxSender
impl UnwindSafe for MailboxSender
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