Struct WipeOnForkOnceCell

Source
pub struct WipeOnForkOnceCell<T> { /* private fields */ }
Expand description
use wipe_on_fork::WipeOnForkOnceCell;

let cell = WipeOnForkOnceCell::new();
assert!(cell.get().is_none());

let value: &String = cell.get_or_init(|| {
    "Hello, World!".to_string()
});
assert_eq!(value, "Hello, World!");
assert!(cell.get().is_some());

Implementations§

Source§

impl<T> WipeOnForkOnceCell<T>

Source

pub const fn new() -> Self

Source

pub fn get(&self) -> Option<&T>

Source

pub fn get_mut(&mut self) -> Option<&mut T>

Source

pub fn set(&self, value: T) -> Result<(), T>

use wipe_on_fork::WipeOnForkOnceCell;

let cell = WipeOnForkOnceCell::new();
assert!(cell.get().is_none());

assert_eq!(cell.set(92), Ok(()));
assert_eq!(cell.set(62), Err(62));

assert!(cell.get().is_some());
Source

pub fn try_insert(&self, value: T) -> Result<&T, (&T, T)>

use wipe_on_fork::WipeOnForkOnceCell;

let cell = WipeOnForkOnceCell::new();
assert!(cell.get().is_none());

assert_eq!(cell.try_insert(92), Ok(&92));
assert_eq!(cell.try_insert(62), Err((&92, 62)));

assert!(cell.get().is_some());
Source

pub fn get_or_init<F>(&self, f: F) -> &T
where F: FnOnce() -> T,

use wipe_on_fork::WipeOnForkOnceCell;

let cell = WipeOnForkOnceCell::new();
let value = cell.get_or_init(|| 92);
assert_eq!(value, &92);
let value = cell.get_or_init(|| unreachable!());
assert_eq!(value, &92);
Source

pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&T, E>
where F: FnOnce() -> Result<T, E>,

use wipe_on_fork::WipeOnForkOnceCell;

let cell = WipeOnForkOnceCell::new();
assert_eq!(cell.get_or_try_init(|| Err(())), Err(()));
assert!(cell.get().is_none());
let value = cell.get_or_try_init(|| -> Result<i32, ()> {
    Ok(92)
});
assert_eq!(value, Ok(&92));
assert_eq!(cell.get(), Some(&92))
Source

pub fn into_inner(self) -> Option<T>

use wipe_on_fork::WipeOnForkOnceCell;

let cell: WipeOnForkOnceCell<String> = WipeOnForkOnceCell::new();
assert_eq!(cell.into_inner(), None);

let cell = WipeOnForkOnceCell::new();
cell.set("hello".to_string()).unwrap();
assert_eq!(cell.into_inner(), Some("hello".to_string()));
Source

pub fn take(&mut self) -> Option<T>

use wipe_on_fork::WipeOnForkOnceCell;

let mut cell: WipeOnForkOnceCell<String> = WipeOnForkOnceCell::new();
assert_eq!(cell.take(), None);

let mut cell = WipeOnForkOnceCell::new();
cell.set("hello".to_string()).unwrap();
assert_eq!(cell.take(), Some("hello".to_string()));
assert_eq!(cell.get(), None);

Trait Implementations§

Source§

impl<T: Clone> Clone for WipeOnForkOnceCell<T>

Source§

fn clone(&self) -> WipeOnForkOnceCell<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for WipeOnForkOnceCell<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Default for WipeOnForkOnceCell<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> From<T> for WipeOnForkOnceCell<T>

Source§

fn from(value: T) -> Self

Creates a new OnceCell<T> which already contains the given value.

Source§

impl<T: PartialEq> PartialEq for WipeOnForkOnceCell<T>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Eq> Eq for WipeOnForkOnceCell<T>

Auto Trait Implementations§

§

impl<T> !Freeze for WipeOnForkOnceCell<T>

§

impl<T> !RefUnwindSafe for WipeOnForkOnceCell<T>

§

impl<T> !Send for WipeOnForkOnceCell<T>

§

impl<T> !Sync for WipeOnForkOnceCell<T>

§

impl<T> Unpin for WipeOnForkOnceCell<T>
where T: Unpin,

§

impl<T> UnwindSafe for WipeOnForkOnceCell<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.