Struct abi_stable::external_types::parking_lot::once::ROnce[][src]

#[repr(C)]
pub struct ROnce { /* fields omitted */ }
Expand description

A synchronization primitive for running global initialization once.

Example

use abi_stable::external_types::{RMutex, ROnce};

static MUTEX: RMutex<usize> = RMutex::new(0);

static ONCE: ROnce = ROnce::new();

let guards = std::iter::repeat_with(|| {
    std::thread::spawn(|| {
        ONCE.call_once(|| {
            *MUTEX.lock() += 1;
        })
    })
})
.take(20)
.collect::<Vec<_>>();

for guard in guards {
    guard.join().unwrap();
}

assert_eq!(*MUTEX.lock(), 1);

Implementations

Constructs an ROnce.

Example
use abi_stable::external_types::ROnce;

static ONCE: ROnce = ROnce::new();

Constructs an ROnce.

Example
use abi_stable::external_types::ROnce;

static ONCE: ROnce = ROnce::NEW;

Gets the running state of this ROnce.

Example
use abi_stable::external_types::parking_lot::once::{ROnce, ROnceState};

use std::panic::AssertUnwindSafe;

let once = ROnce::new();

assert_eq!(once.state(), ROnceState::New);

let _ = std::panic::catch_unwind(AssertUnwindSafe(|| {
    once.call_once(|| panic!());
}));

assert!(once.state().poisoned());

once.call_once_force(|_| ());

assert!(once.state().done());

Runs an initialization function.

f will be run only if this is the first time this method has been called on this ROnce.

Once this function returns it is guaranteed that some closure passed to this method has run to completion.

Panics

Panics in the closure will cause this ROnce to become poisoned, and any future calls to this method will panic.

Example
use abi_stable::external_types::ROnce;

let once = ROnce::new();
let mut counter = 0usize;

once.call_once(|| counter += 1);
once.call_once(|| counter += 1);
once.call_once(|| counter += 1);
once.call_once(|| counter += 1);

assert_eq!(counter, 1);

Runs an initialization function,even if the ROnce is poisoned.

This will keep trying to run different closures until one of them doesn’t panic.

The ROnceState parameter describes whether the ROnce is New or Poisoned.

Example
use abi_stable::external_types::ROnce;

use std::panic::{self, AssertUnwindSafe};

let once = ROnce::new();
let mut counter = 0usize;

for i in 0..100 {
    let _ = panic::catch_unwind(AssertUnwindSafe(|| {
        once.call_once_force(|_| {
            if i < 6 {
                panic!();
            }
            counter = i;
        })
    }));
}

assert_eq!(counter, 6);

Trait Implementations

Formats the value using the given formatter. Read more

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

Whether this type has a single invalid bit-pattern. Read more

The layout of the type provided by implementors.

const-equivalents of the associated types.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

This is always WithMetadata_<Self, Self>

Performs the conversion.

Gets a reference to a field, determined by offset. Read more

Gets a muatble reference to a field, determined by offset. Read more

Gets a const pointer to a field, the field is determined by offset. Read more

Gets a mutable pointer to a field, determined by offset. Read more

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more

Swaps a field (determined by offset) with the same field in right. Read more

Gets a copy of a field (determined by offset). The field is determined by offset. Read more

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more

Swaps a field (determined by offset) with the same field in right. Read more

Gets a copy of a field (determined by offset). The field is determined by offset. Read more

Compares the address of self with the address of other. Read more

Emulates the pipeline operator, allowing method syntax in more places. Read more

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more

The same as piped, except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self. Read more

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more

Observes the value of self, passing it along unmodified. Useful in long method chains. Read more

Performs a conversion with Into. using the turbofish .into_::<_>() syntax. Read more

Performs a reference to reference conversion with AsRef, using the turbofish .as_ref_::<_>() syntax. Read more

Performs a mutable reference to mutable reference conversion with AsMut, using the turbofish .as_mut_::<_>() syntax. Read more

Drops self using method notation. Alternative to std::mem::drop. Read more

Transmutes the element type of this pointer.. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

This is always Self.

Converts a value back to the original type.

Converts a reference back to the original type.

Converts a mutable reference back to the original type.

This is supported on crate feature alloc only.

Converts a box back to the original type.

This is supported on crate feature alloc only.

Converts an Arc back to the original type. Read more

This is supported on crate feature alloc only.

Converts an Rc back to the original type. Read more

Converts a value back to the original type.

Converts a reference back to the original type.

Converts a mutable reference back to the original type.

This is supported on crate feature alloc only.

Converts a box back to the original type.

This is supported on crate feature alloc only.

Converts an Arc back to the original type.

This is supported on crate feature alloc only.

Converts an Rc back to the original type.