mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-13 12:31:09 +00:00
b96ce81f89
* Remove dependency of apub_lib on LemmyContext * Move ApubObject trait to library * Reorganize files in apub lib * Move ActorType, signatures, activity_queue to apub library
35 lines
606 B
Rust
35 lines
606 B
Rust
use std::{ops::Deref, sync::Arc};
|
|
|
|
#[derive(Debug)]
|
|
pub struct Data<T: ?Sized>(Arc<T>);
|
|
|
|
impl<T> Data<T> {
|
|
/// Create new `Data` instance.
|
|
pub fn new(state: T) -> Data<T> {
|
|
Data(Arc::new(state))
|
|
}
|
|
|
|
/// Get reference to inner app data.
|
|
pub fn get_ref(&self) -> &T {
|
|
self.0.as_ref()
|
|
}
|
|
|
|
/// Convert to the internal Arc<T>
|
|
pub fn into_inner(self) -> Arc<T> {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
impl<T: ?Sized> Deref for Data<T> {
|
|
type Target = Arc<T>;
|
|
|
|
fn deref(&self) -> &Arc<T> {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl<T: ?Sized> Clone for Data<T> {
|
|
fn clone(&self) -> Data<T> {
|
|
Data(self.0.clone())
|
|
}
|
|
}
|