pub enum RouterMsg {
Sample {
topic: String,
payload: Vec<u8>,
},
Shutdown,
}Expand description
Nachricht an einen Connection-Writer-Thread.
Variants§
Sample
DDS-Sample auf einem Topic — Push als WS-Frame.
Fields
Shutdown
Daemon-Shutdown — Connection close mit Code 1001.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RouterMsg
impl RefUnwindSafe for RouterMsg
impl Send for RouterMsg
impl Sync for RouterMsg
impl Unpin for RouterMsg
impl UnsafeUnpin for RouterMsg
impl UnwindSafe for RouterMsg
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