mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-22 08:11:00 +00:00
40 lines
898 B
Rust
40 lines
898 B
Rust
use std::any::Any;
|
|
use std::fmt::{self, Debug};
|
|
use std::ops::{Deref, DerefMut};
|
|
|
|
use tokio::task::JoinHandle;
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct Opaque<T: Any>(pub T);
|
|
|
|
impl<T: Any> Debug for Opaque<T> {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
<dyn Any>::fmt(&self.0, f)
|
|
}
|
|
}
|
|
|
|
impl<T: Any> Deref for Opaque<T> {
|
|
type Target = T;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl<T: Any> DerefMut for Opaque<T> {
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
&mut self.0
|
|
}
|
|
}
|
|
|
|
/// A handle to a background job which will be automatically cancelled if
|
|
/// the handle is dropped. Extract the inner join handle to prevent this
|
|
/// behaviour.
|
|
#[derive(Debug)]
|
|
pub struct OwnedHandle(pub JoinHandle<()>);
|
|
|
|
impl Drop for OwnedHandle {
|
|
fn drop(&mut self) {
|
|
self.0.abort();
|
|
}
|
|
}
|