pub struct RemoteSqliteRequestEntry {
pub request: RemoteSqliteRequest,
pub response_tx: Sender<Result<RemoteSqliteResponseEnvelope>>,
pub expected_session: Option<u64>,
pub sent_session: Option<u64>,
pub sent: bool,
pub timestamp: Instant,
}Fields§
§request: RemoteSqliteRequest§response_tx: Sender<Result<RemoteSqliteResponseEnvelope>>§expected_session: Option<u64>§sent_session: Option<u64>§sent: bool§timestamp: InstantAuto Trait Implementations§
impl !RefUnwindSafe for RemoteSqliteRequestEntry
impl !UnwindSafe for RemoteSqliteRequestEntry
impl Freeze for RemoteSqliteRequestEntry
impl Send for RemoteSqliteRequestEntry
impl Sync for RemoteSqliteRequestEntry
impl Unpin for RemoteSqliteRequestEntry
impl UnsafeUnpin for RemoteSqliteRequestEntry
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