[−][src]Struct crossbeam_epoch::Shared
A pointer to an object protected by the epoch GC.
The pointer is valid for use only during the lifetime 'g
.
The pointer must be properly aligned. Since it is aligned, a tag can be stored into the unused least significant bits of the address.
Methods
impl<'g, T> Shared<'g, T>
[src]
impl<'g, T> Shared<'g, T>
pub fn null() -> Shared<'g, T>
[src]
pub fn null() -> Shared<'g, T>
Returns a new null pointer.
Examples
use crossbeam_epoch::Shared; let p = Shared::<i32>::null(); assert!(p.is_null());
pub fn is_null(&self) -> bool
[src]
pub fn is_null(&self) -> bool
Returns true
if the pointer is null.
Examples
use crossbeam_epoch::{self as epoch, Atomic, Owned}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::null(); let guard = &epoch::pin(); assert!(a.load(SeqCst, guard).is_null()); a.store(Owned::new(1234), SeqCst); assert!(!a.load(SeqCst, guard).is_null());
pub fn as_raw(&self) -> *const T
[src]
pub fn as_raw(&self) -> *const T
Converts the pointer to a raw pointer (without the tag).
Examples
use crossbeam_epoch::{self as epoch, Atomic, Owned}; use std::sync::atomic::Ordering::SeqCst; let o = Owned::new(1234); let raw = &*o as *const _; let a = Atomic::from(o); let guard = &epoch::pin(); let p = a.load(SeqCst, guard); assert_eq!(p.as_raw(), raw);
ⓘImportant traits for &'a mut Rpub unsafe fn deref(&self) -> &'g T
[src]
pub unsafe fn deref(&self) -> &'g T
Dereferences the pointer.
Returns a reference to the pointee that is valid during the lifetime 'g
.
Safety
Dereferencing a pointer is unsafe because it could be pointing to invalid memory.
Another concern is the possiblity of data races due to lack of proper synchronization. For example, consider the following scenario:
- A thread creates a new object:
a.store(Owned::new(10), Relaxed)
- Another thread reads it:
*a.load(Relaxed, guard).as_ref().unwrap()
The problem is that relaxed orderings don't synchronize initialization of the object with
the read from the second thread. This is a data race. A possible solution would be to use
Release
and Acquire
orderings.
Examples
use crossbeam_epoch::{self as epoch, Atomic}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::new(1234); let guard = &epoch::pin(); let p = a.load(SeqCst, guard); unsafe { assert_eq!(p.deref(), &1234); }
pub unsafe fn as_ref(&self) -> Option<&'g T>
[src]
pub unsafe fn as_ref(&self) -> Option<&'g T>
Converts the pointer to a reference.
Returns None
if the pointer is null, or else a reference to the object wrapped in Some
.
Safety
Dereferencing a pointer is unsafe because it could be pointing to invalid memory.
Another concern is the possiblity of data races due to lack of proper synchronization. For example, consider the following scenario:
- A thread creates a new object:
a.store(Owned::new(10), Relaxed)
- Another thread reads it:
*a.load(Relaxed, guard).as_ref().unwrap()
The problem is that relaxed orderings don't synchronize initialization of the object with
the read from the second thread. This is a data race. A possible solution would be to use
Release
and Acquire
orderings.
Examples
use crossbeam_epoch::{self as epoch, Atomic}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::new(1234); let guard = &epoch::pin(); let p = a.load(SeqCst, guard); unsafe { assert_eq!(p.as_ref(), Some(&1234)); }
pub unsafe fn into_owned(self) -> Owned<T>
[src]
pub unsafe fn into_owned(self) -> Owned<T>
Takes ownership of the pointee.
Panics
Panics if this pointer is null, but only in debug mode.
Safety
This method may be called only if the pointer is valid and nobody else is holding a reference to the same object.
Examples
use crossbeam_epoch::{self as epoch, Atomic}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::new(1234); unsafe { let guard = &epoch::unprotected(); let p = a.load(SeqCst, guard); drop(p.into_owned()); }
pub fn tag(&self) -> usize
[src]
pub fn tag(&self) -> usize
Returns the tag stored within the pointer.
Examples
use crossbeam_epoch::{self as epoch, Atomic, Owned}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::<u64>::from(Owned::new(0u64).with_tag(2)); let guard = &epoch::pin(); let p = a.load(SeqCst, guard); assert_eq!(p.tag(), 2);
pub fn with_tag(&self, tag: usize) -> Shared<'g, T>
[src]
pub fn with_tag(&self, tag: usize) -> Shared<'g, T>
Returns the same pointer, but tagged with tag
. tag
is truncated to be fit into the
unused bits of the pointer to T
.
Examples
use crossbeam_epoch::{self as epoch, Atomic}; use std::sync::atomic::Ordering::SeqCst; let a = Atomic::new(0u64); let guard = &epoch::pin(); let p1 = a.load(SeqCst, guard); let p2 = p1.with_tag(2); assert_eq!(p1.tag(), 0); assert_eq!(p2.tag(), 2); assert_eq!(p1.as_raw(), p2.as_raw());
Trait Implementations
impl<'g, T> Pointer<T> for Shared<'g, T>
[src]
impl<'g, T> Pointer<T> for Shared<'g, T>
fn into_usize(self) -> usize
[src]
fn into_usize(self) -> usize
Returns the machine representation of the pointer.
unsafe fn from_usize(data: usize) -> Self
[src]
unsafe fn from_usize(data: usize) -> Self
Returns a new pointer pointing to the tagged pointer data
.
impl<'g, T> Clone for Shared<'g, T>
[src]
impl<'g, T> Clone for Shared<'g, T>
fn clone(&self) -> Self
[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<'g, T> Copy for Shared<'g, T>
[src]
impl<'g, T> Copy for Shared<'g, T>
impl<'g, T> From<Shared<'g, T>> for Atomic<T>
[src]
impl<'g, T> From<Shared<'g, T>> for Atomic<T>
fn from(ptr: Shared<'g, T>) -> Self
[src]
fn from(ptr: Shared<'g, T>) -> Self
Returns a new atomic pointer pointing to ptr
.
Examples
use crossbeam_epoch::{Atomic, Shared}; let a = Atomic::<i32>::from(Shared::<i32>::null());
impl<'g, T> From<*const T> for Shared<'g, T>
[src]
impl<'g, T> From<*const T> for Shared<'g, T>
impl<'g, T> Eq for Shared<'g, T>
[src]
impl<'g, T> Eq for Shared<'g, T>
impl<'g, T> PartialOrd<Shared<'g, T>> for Shared<'g, T>
[src]
impl<'g, T> PartialOrd<Shared<'g, T>> for Shared<'g, T>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'g, T> Default for Shared<'g, T>
[src]
impl<'g, T> Default for Shared<'g, T>
impl<'g, T> PartialEq<Shared<'g, T>> for Shared<'g, T>
[src]
impl<'g, T> PartialEq<Shared<'g, T>> for Shared<'g, T>
fn eq(&self, other: &Self) -> bool
[src]
fn eq(&self, other: &Self) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'g, T> Ord for Shared<'g, T>
[src]
impl<'g, T> Ord for Shared<'g, T>
fn cmp(&self, other: &Self) -> Ordering
[src]
fn cmp(&self, other: &Self) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl<'g, T> Debug for Shared<'g, T>
[src]
impl<'g, T> Debug for Shared<'g, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'g, T> Pointer for Shared<'g, T>
[src]
impl<'g, T> Pointer for Shared<'g, T>
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more