[][src]Struct xarc::Xarc

pub struct Xarc<T: Send> { /* fields omitted */ }

Xarc is a derefenceable atomically refcounted smart pointer. Xarc is roughly equivalent to Arc but is compatible with AtomicXarc.

Examples

Here is some typical usage of Xarc.

use xarc::Xarc;
 
let xarc = Xarc::new(42);
let same = xarc.clone();
let different = Xarc::new(42);
 
// Null checks
assert!(!xarc.is_null());
assert_ne!(xarc, Xarc::null());
 
// Pointer comparisons
assert_eq!(xarc, same);
assert_ne!(xarc, different);
 
// Value comparisons
assert_eq!(xarc.maybe_deref().unwrap(), different.maybe_deref().unwrap());
assert_eq!(Xarc::<i64>::null().maybe_deref(), None);

When implementing a container you often need structures with an immutable part, such as a pointer to another part of the structure, and a separate value that you can take to return a value as you remove it. UnsafeCell comes to the rescue.

use core::{cell::UnsafeCell, mem};
use xarc::Xarc;
 
struct Example {
    immutable: i64,
    takeable: UnsafeCell<i64>,
}
 
let mut xarc = Xarc::new(Example {immutable: 0, takeable: UnsafeCell::new(42)});
 
let value = unsafe {
    // You had better know what you're doing at this point. 🙂
    core::mem::take(&mut *xarc.maybe_deref().unwrap().takeable.get())
};
 
assert_eq!(value, 42);

Implementations

impl<T: Send> Xarc<T>[src]

#[must_use]pub fn new(value: T) -> Self[src]

Initialize the smart pointer with value.

#[must_use]pub fn null() -> Self[src]

Initialize the smart pointer with null.

pub fn reset(&mut self)[src]

Reset the smart pointer to null.

#[must_use]pub fn is_null(&self) -> bool[src]

Check if the smart pointer is null.

#[must_use]pub fn maybe_deref(&self) -> Option<&T>[src]

Dereference the pointer only if it is not null. None will be returned if it is null.

#[must_use]pub unsafe fn unguarded_maybe_deref_mut(&mut self) -> Option<&mut T>[src]

Dereference the pointer only if it is not null. None will be returned if it is null.

Safety

  • This should be called only if you're absolutely, 100% certain that nobody else could possibly have access to this data or if you really know what you're doing.

Trait Implementations

impl<T: Send> Clone for Xarc<T>[src]

impl<T: Debug + Send> Debug for Xarc<T>[src]

impl<T: Send> Drop for Xarc<T>[src]

impl<T: Eq + Send> Eq for Xarc<T>[src]

impl<T: Send, '_> From<&'_ Xarc<T>> for AtomicXarc<T>[src]

impl<T: Send> Hash for Xarc<T>[src]

impl<T: Send> PartialEq<Xarc<T>> for Xarc<T>[src]

impl<T: Send> Send for Xarc<T>[src]

impl<T: Send> StructuralEq for Xarc<T>[src]

impl<T: Send> Sync for Xarc<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Xarc<T> where
    T: RefUnwindSafe

impl<T> Unpin for Xarc<T>

impl<T> UnwindSafe for Xarc<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.