pub struct EngineState {
pub submissions: RwLock<HashMap<String, SubmissionResponse>>,
pub dlq: RwLock<Vec<DlqEntry>>,
pub start_time: Instant,
}Fields§
§submissions: RwLock<HashMap<String, SubmissionResponse>>§dlq: RwLock<Vec<DlqEntry>>§start_time: InstantImplementations§
Source§impl EngineState
impl EngineState
Trait Implementations§
Source§impl Debug for EngineState
impl Debug for EngineState
Auto Trait Implementations§
impl !Freeze for EngineState
impl !RefUnwindSafe for EngineState
impl Send for EngineState
impl Sync for EngineState
impl Unpin for EngineState
impl UnsafeUnpin for EngineState
impl !UnwindSafe for EngineState
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