Struct AbstractPtr

Source
pub struct AbstractPtr<'a, M, T, A = ReadWrite>
where T: ?Sized,
{ /* private fields */ }

Implementations§

Source§

impl<M, T, A> AbstractPtr<'_, M, T, A>
where M: AtomicOps<T>,

Source

pub fn atomic_load(self, order: Ordering) -> M::Value

Source

pub fn atomic_store(self, val: M::Value, order: Ordering)

Source

pub fn atomic_swap(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_compare_exchange( self, current: M::Value, new: M::Value, success: Ordering, failure: Ordering, ) -> Result<M::Value, M::Value>

Source

pub fn atomic_compare_exchange_weak( self, current: M::Value, new: M::Value, success: Ordering, failure: Ordering, ) -> Result<M::Value, M::Value>

Source

pub fn atomic_fetch_add(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_sub(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_and(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_nand(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_or(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_xor(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_update<F>( self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<M::Value, M::Value>
where M::Value: Copy, F: FnMut(M::Value) -> Option<M::Value>,

Source

pub fn atomic_fetch_max(self, val: M::Value, order: Ordering) -> M::Value

Source

pub fn atomic_fetch_min(self, val: M::Value, order: Ordering) -> M::Value

Source§

impl<'a, M, T> AbstractPtr<'a, M, T>
where T: ?Sized,

Constructor functions.

Source

pub unsafe fn new(pointer: NonNull<T>) -> AbstractPtr<'a, M, T, ReadWrite>

Source

pub const unsafe fn new_read_only( pointer: NonNull<T>, ) -> AbstractPtr<'a, M, T, ReadOnly>

Source

pub const unsafe fn new_restricted<A>( access: A, pointer: NonNull<T>, ) -> AbstractPtr<'a, M, T, A>
where A: Access,

Source§

impl<'a, M, T, A> AbstractPtr<'a, M, T, A>
where T: ?Sized,

Source

pub fn read(self) -> T
where M: UnitaryOps<T>, T: Sized, A: Readable,

Source

pub fn write(self, value: T)
where M: UnitaryOps<T>, T: Sized, A: Writable,

Source

pub fn update<F>(self, f: F)
where M: UnitaryOps<T>, T: Sized, A: Readable + Writable, F: FnOnce(T) -> T,

Source

pub fn as_raw_ptr(self) -> NonNull<T>

Source

pub unsafe fn map<F, U>(self, f: F) -> AbstractPtr<'a, M, U, A>
where F: FnOnce(NonNull<T>) -> NonNull<U>, A: Access, U: ?Sized,

Source§

impl<'a, M, T, A> AbstractPtr<'a, M, T, A>
where T: ?Sized,

Methods for restricting access.

Source

pub fn restrict<To>(self) -> AbstractPtr<'a, M, T, A::Restricted>
where A: RestrictAccess<To>,

Source§

impl<'a, M, T> AbstractPtr<'a, M, T, ReadWrite>
where T: ?Sized,

Methods for restricting access.

Source

pub fn read_only(self) -> AbstractPtr<'a, M, T, ReadOnly>

Source

pub fn write_only(self) -> AbstractPtr<'a, M, T, WriteOnly>

Source§

impl<'a, M, T, A> AbstractPtr<'a, M, [T], A>

Source

pub fn len(self) -> usize

Source

pub fn is_empty(self) -> bool

Source

pub fn index<I>( self, index: I, ) -> AbstractPtr<'a, M, <I as SliceIndex<[T]>>::Output, A>
where I: AbstractPtrSliceIndex<[T]> + SliceIndex<[()]> + Clone, A: Access,

Source

pub fn iter(self) -> impl Iterator<Item = AbstractPtr<'a, M, T, A>>
where A: Access,

Source

pub fn copy_into_slice(self, dst: &mut [T])
where M: BulkOps<T>, A: Readable,

Source

pub fn copy_from_slice(self, src: &[T])
where M: BulkOps<T>, A: Writable,

Source

pub fn copy_within(self, src: impl RangeBounds<usize>, dest: usize)
where M: BulkOps<T>, A: Readable + Writable,

Source

pub fn split_at( self, mid: usize, ) -> (AbstractPtr<'a, M, [T], A>, AbstractPtr<'a, M, [T], A>)
where A: Access,

Source

pub fn as_chunks<const N: usize>( self, ) -> (AbstractPtr<'a, M, [[T; N]], A>, AbstractPtr<'a, M, [T], A>)
where A: Access,

Source

pub unsafe fn as_chunks_unchecked<const N: usize>( self, ) -> AbstractPtr<'a, M, [[T; N]], A>
where A: Access,

Source§

impl<M, A> AbstractPtr<'_, M, [u8], A>

Source

pub fn fill(self, value: u8)
where M: BulkOps<u8>, A: Writable,

Source§

impl<'a, M, T, A, const N: usize> AbstractPtr<'a, M, [T; N], A>

Methods for converting arrays to slices

Source

pub fn as_slice(self) -> AbstractPtr<'a, M, [T], A>
where A: Access,

Trait Implementations§

Source§

impl<M, T, A> Clone for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl<M, T, A> Debug for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

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

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

impl<M, T, A> Hash for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
Source§

impl<M, T, A> Ord for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<M, T, A> PartialEq for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

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

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

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<M, T, A> PartialOrd for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<M, T, A> Pointer for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

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

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

impl<M, T, A> Copy for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Source§

impl<M, T, A> Eq for AbstractPtr<'_, M, T, A>
where T: ?Sized,

Auto Trait Implementations§

§

impl<'a, M, T, A> Freeze for AbstractPtr<'a, M, T, A>
where T: ?Sized,

§

impl<'a, M, T, A> RefUnwindSafe for AbstractPtr<'a, M, T, A>
where M: RefUnwindSafe, A: RefUnwindSafe, T: RefUnwindSafe + ?Sized,

§

impl<'a, M, T, A = ReadWrite> !Send for AbstractPtr<'a, M, T, A>

§

impl<'a, M, T, A = ReadWrite> !Sync for AbstractPtr<'a, M, T, A>

§

impl<'a, M, T, A> Unpin for AbstractPtr<'a, M, T, A>
where M: Unpin, A: Unpin, T: ?Sized,

§

impl<'a, M, T, A> UnwindSafe for AbstractPtr<'a, M, T, A>
where T: RefUnwindSafe + ?Sized, M: UnwindSafe, A: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

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

§

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

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

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

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> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.