[−][src]Struct crossbeam_epoch::Owned
An owned heap-allocated object.
This type is very similar to Box<T>.
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<T> Owned<T>[src]
impl<T> Owned<T>pub fn new(value: T) -> Owned<T>[src]
pub fn new(value: T) -> Owned<T>Allocates value on the heap and returns a new owned pointer pointing to it.
Examples
use crossbeam_epoch::Owned; let o = Owned::new(1234);
pub unsafe fn from_raw(raw: *mut T) -> Owned<T>[src]
pub unsafe fn from_raw(raw: *mut T) -> Owned<T>Returns a new owned pointer pointing to raw.
This function is unsafe because improper use may lead to memory problems. Argument raw
must be a valid pointer. Also, a double-free may occur if the function is called twice on
the same raw pointer.
Panics
Panics if raw is not properly aligned.
Examples
use crossbeam_epoch::Owned; let o = unsafe { Owned::from_raw(Box::into_raw(Box::new(1234))) };
Converts the owned pointer into a Shared.
Examples
use crossbeam_epoch::{self as epoch, Owned}; let o = Owned::new(1234); let guard = &epoch::pin(); let p = o.into_shared(guard);
ⓘImportant traits for Box<R>pub fn into_box(self) -> Box<T>[src]
pub fn into_box(self) -> Box<T>Converts the owned pointer into a Box.
Examples
use crossbeam_epoch::{self as epoch, Owned}; let o = Owned::new(1234); let b: Box<i32> = o.into_box(); assert_eq!(*b, 1234);
pub fn tag(&self) -> usize[src]
pub fn tag(&self) -> usizeReturns the tag stored within the pointer.
Examples
use crossbeam_epoch::Owned; assert_eq!(Owned::new(1234).tag(), 0);
pub fn with_tag(self, tag: usize) -> Owned<T>[src]
pub fn with_tag(self, tag: usize) -> Owned<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::Owned; let o = Owned::new(0u64); assert_eq!(o.tag(), 0); let o = o.with_tag(2); assert_eq!(o.tag(), 2);
Trait Implementations
impl<T> Pointer<T> for Owned<T>[src]
impl<T> Pointer<T> for Owned<T>fn into_usize(self) -> usize[src]
fn into_usize(self) -> usizeReturns the machine representation of the pointer.
unsafe fn from_usize(data: usize) -> Self[src]
unsafe fn from_usize(data: usize) -> SelfReturns a new pointer pointing to the tagged pointer data.
Panics
Panics if the data is zero in debug mode.
impl<T: Clone> Clone for Owned<T>[src]
impl<T: Clone> Clone for Owned<T>fn clone(&self) -> Self[src]
fn clone(&self) -> SelfReturns 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<T> From<Owned<T>> for Atomic<T>[src]
impl<T> From<Owned<T>> for Atomic<T>fn from(owned: Owned<T>) -> Self[src]
fn from(owned: Owned<T>) -> SelfReturns a new atomic pointer pointing to owned.
Examples
use crossbeam_epoch::{Atomic, Owned}; let a = Atomic::<i32>::from(Owned::new(1234));
impl<T> From<T> for Owned<T>[src]
impl<T> From<T> for Owned<T>impl<T> From<Box<T>> for Owned<T>[src]
impl<T> From<Box<T>> for Owned<T>impl<T> Drop for Owned<T>[src]
impl<T> Drop for Owned<T>impl<T> AsRef<T> for Owned<T>[src]
impl<T> AsRef<T> for Owned<T>impl<T> AsMut<T> for Owned<T>[src]
impl<T> AsMut<T> for Owned<T>impl<T> Debug for Owned<T>[src]
impl<T> Debug for Owned<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T> Deref for Owned<T>[src]
impl<T> Deref for Owned<T>type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Rfn deref(&self) -> &T[src]
fn deref(&self) -> &TDereferences the value.
impl<T> DerefMut for Owned<T>[src]
impl<T> DerefMut for Owned<T>ⓘImportant traits for &'a mut Rfn deref_mut(&mut self) -> &mut T[src]
fn deref_mut(&mut self) -> &mut TMutably dereferences the value.
impl<T> Borrow<T> for Owned<T>[src]
impl<T> Borrow<T> for Owned<T>ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T> BorrowMut<T> for Owned<T>[src]
impl<T> BorrowMut<T> for Owned<T>ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<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) -> TCreates 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) -> &TImmutably 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 TMutably 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