pub enum SupervisorEvent {
Log {
project_id: ProjectId,
service: String,
message: String,
},
ProjectStopped {
project_id: ProjectId,
},
Error {
project_id: ProjectId,
message: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SupervisorEvent
impl RefUnwindSafe for SupervisorEvent
impl Send for SupervisorEvent
impl Sync for SupervisorEvent
impl Unpin for SupervisorEvent
impl UnwindSafe for SupervisorEvent
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