pub struct MemoryChannels {
pub rx_memory_from_signal_handler: AquaReceiver<InternalCommand>,
}Expand description
Struct collects the channels for communication with other threads.
Fields§
§rx_memory_from_signal_handler: AquaReceiver<InternalCommand>Receiver part of the channel for communication from the signal handler
Implementations§
Source§impl MemoryChannels
impl MemoryChannels
Sourcepub fn receive_from_signal_handler(
&mut self,
) -> Result<InternalCommand, AquaChannelError>
pub fn receive_from_signal_handler( &mut self, ) -> Result<InternalCommand, AquaChannelError>
Receives a command from the signal handler.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryChannels
impl RefUnwindSafe for MemoryChannels
impl Send for MemoryChannels
impl !Sync for MemoryChannels
impl Unpin for MemoryChannels
impl UnwindSafe for MemoryChannels
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