mod once_self_cell;
pub trait OnceCellCompatible<T> {
fn new() -> Self;
fn get(&self) -> Option<&T>;
fn get_or_init<F>(&self, f: F) -> &T
where
F: FnOnce() -> T;
fn take(&mut self) -> Option<T>;
}
pub mod unsync {
use crate::once_self_cell::DependentInner;
use once_cell::unsync::OnceCell;
#[derive(Debug)]
pub struct UnsyncOnceCell(OnceCell<DependentInner>);
impl crate::OnceCellCompatible<DependentInner> for UnsyncOnceCell {
fn new() -> Self {
UnsyncOnceCell(OnceCell::<DependentInner>::new())
}
fn get(&self) -> Option<&DependentInner> {
self.0.get()
}
fn get_or_init<F>(&self, f: F) -> &DependentInner
where
F: FnOnce() -> DependentInner,
{
self.0.get_or_init(f)
}
fn take(&mut self) -> Option<DependentInner> {
self.0.take()
}
}
pub type OnceSelfCell<Owner, DependentStaticLifetime> =
crate::once_self_cell::OnceSelfCell<Owner, DependentStaticLifetime, UnsyncOnceCell>;
}
pub mod sync {
use crate::once_self_cell::DependentInner;
use once_cell::sync::OnceCell;
#[derive(Debug)]
pub struct SyncOnceCell(OnceCell<DependentInner>);
impl crate::OnceCellCompatible<DependentInner> for SyncOnceCell {
fn new() -> Self {
SyncOnceCell(OnceCell::<DependentInner>::new())
}
fn get(&self) -> Option<&DependentInner> {
self.0.get()
}
fn get_or_init<F>(&self, f: F) -> &DependentInner
where
F: FnOnce() -> DependentInner,
{
self.0.get_or_init(f)
}
fn take(&mut self) -> Option<DependentInner> {
self.0.take()
}
}
unsafe impl Send for SyncOnceCell {}
unsafe impl Sync for SyncOnceCell {}
pub type OnceSelfCell<Owner, DependentStaticLifetime> =
crate::once_self_cell::OnceSelfCell<Owner, DependentStaticLifetime, SyncOnceCell>;
}
pub mod custom {
pub type OnceSelfCell<Owner, DependentStaticLifetime, DependentCell> =
crate::once_self_cell::OnceSelfCell<Owner, DependentStaticLifetime, DependentCell>;
}