Struct arc_swap::access::ConstantDeref [−][src]
pub struct ConstantDeref<T>(_);
Expand description
A plumbing type.
This is the guard type for Constant
. It is accessible, but is not expected to be generally
used directly.
Trait Implementations
impl<T: Clone> Clone for ConstantDeref<T>
[src]
impl<T: Clone> Clone for ConstantDeref<T>
[src]fn clone(&self) -> ConstantDeref<T>
[src]
fn clone(&self) -> ConstantDeref<T>
[src]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)
1.0.0[src]Performs copy-assignment from source
. Read more
impl<T: Debug> Debug for ConstantDeref<T>
[src]
impl<T: Debug> Debug for ConstantDeref<T>
[src]impl<T> Deref for ConstantDeref<T>
[src]
impl<T> Deref for ConstantDeref<T>
[src]impl<T: Hash> Hash for ConstantDeref<T>
[src]
impl<T: Hash> Hash for ConstantDeref<T>
[src]impl<T: Ord> Ord for ConstantDeref<T>
[src]
impl<T: Ord> Ord for ConstantDeref<T>
[src]impl<T: PartialEq> PartialEq<ConstantDeref<T>> for ConstantDeref<T>
[src]
impl<T: PartialEq> PartialEq<ConstantDeref<T>> for ConstantDeref<T>
[src]fn eq(&self, other: &ConstantDeref<T>) -> bool
[src]
fn eq(&self, other: &ConstantDeref<T>) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ConstantDeref<T>) -> bool
[src]
fn ne(&self, other: &ConstantDeref<T>) -> bool
[src]This method tests for !=
.
impl<T: PartialOrd> PartialOrd<ConstantDeref<T>> for ConstantDeref<T>
[src]
impl<T: PartialOrd> PartialOrd<ConstantDeref<T>> for ConstantDeref<T>
[src]fn partial_cmp(&self, other: &ConstantDeref<T>) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &ConstantDeref<T>) -> Option<Ordering>
[src]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
1.0.0[src]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
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<T: Copy> Copy for ConstantDeref<T>
[src]
impl<T: Eq> Eq for ConstantDeref<T>
[src]
impl<T> StructuralEq for ConstantDeref<T>
[src]
impl<T> StructuralPartialEq for ConstantDeref<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for ConstantDeref<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ConstantDeref<T> where
T: Send,
T: Send,
impl<T> Sync for ConstantDeref<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ConstantDeref<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ConstantDeref<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T, A> DynAccess<T> for A where
A: Access<T>,
<A as Access<T>>::Guard: 'static,
[src]
impl<T, A> DynAccess<T> for A where
A: Access<T>,
<A as Access<T>>::Guard: 'static,
[src]pub fn load(&Self) -> DynGuard<T>
[src]
pub fn load(&Self) -> DynGuard<T>
[src]The equivalent of Access::load
.
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more