Trait kvarn::prelude::compact_str::core::ops::DerefMut

1.0.0 · source ·
pub trait DerefMut: Deref {
    // Required method
    fn deref_mut(&mut self) -> &mut Self::Target;
}
Available on non-crate feature miri-test-libstd only.
Expand description

Used for mutable dereferencing operations, like in *v = 1;.

In addition to being used for explicit dereferencing operations with the (unary) * operator in mutable contexts, DerefMut is also used implicitly by the compiler in many circumstances. This mechanism is called Deref coercion’. In immutable contexts, Deref is used.

Implementing DerefMut for smart pointers makes mutating the data behind them convenient, which is why they implement DerefMut. On the other hand, the rules regarding Deref and DerefMut were designed specifically to accommodate smart pointers. Because of this, DerefMut should only be implemented for smart pointers to avoid confusion.

For similar reasons, this trait should never fail. Failure during dereferencing can be extremely confusing when DerefMut is invoked implicitly.

More on Deref coercion

If T implements DerefMut<Target = U>, and x is a value of type T, then:

  • In mutable contexts, *x (where T is neither a reference nor a raw pointer) is equivalent to *DerefMut::deref_mut(&mut x).
  • Values of type &mut T are coerced to values of type &mut U
  • T implicitly implements all the (mutable) methods of the type U.

For more details, visit the chapter in The Rust Programming Language as well as the reference sections on the dereference operator, method resolution and type coercions.

Examples

A struct with a single field which is modifiable by dereferencing the struct.

use std::ops::{Deref, DerefMut};

struct DerefMutExample<T> {
    value: T
}

impl<T> Deref for DerefMutExample<T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.value
    }
}

impl<T> DerefMut for DerefMutExample<T> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.value
    }
}

let mut x = DerefMutExample { value: 'a' };
*x = 'b';
assert_eq!('b', x.value);

Required Methods§

source

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Implementors§

§

impl DerefMut for BytesMut

1.68.0 · source§

impl DerefMut for PathBuf

§

impl DerefMut for CompactString

1.3.0 · source§

impl DerefMut for String

1.44.0 · source§

impl DerefMut for OsString

§

impl DerefMut for ClientConnection

§

impl DerefMut for ClientConnection

§

impl DerefMut for Connection

§

impl DerefMut for Connection

§

impl DerefMut for ConnectionId

§

impl DerefMut for FixedBuf

§

impl DerefMut for ServerConnection

§

impl DerefMut for ServerConnection

1.36.0 · source§

impl<'a> DerefMut for IoSliceMut<'a>

source§

impl<'a> DerefMut for socket2::MaybeUninitSlice<'a>

§

impl<'a> DerefMut for MaybeUninitSlice<'a>

source§

impl<'a, 'f> DerefMut for VaList<'a, 'f>where 'f: 'a,

§

impl<'a, K, V, S> DerefMut for RefMut<'a, K, V, S>where K: Eq + Hash, S: BuildHasher,

§

impl<'a, K, V, S> DerefMut for RefMutMulti<'a, K, V, S>where K: Eq + Hash, S: BuildHasher,

§

impl<'a, K, V, T, S> DerefMut for MappedRefMut<'a, K, V, T, S>where K: Eq + Hash, S: BuildHasher,

§

impl<'a, R, T> DerefMut for MappedMutexGuard<'a, R, T>where R: RawMutex + 'a, T: 'a + ?Sized,

§

impl<'a, R, T> DerefMut for MappedRwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

impl<'a, R, T> DerefMut for MutexGuard<'a, R, T>where R: RawMutex + 'a, T: 'a + ?Sized,

§

impl<'a, R, T> DerefMut for RwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: 'a + ?Sized,

§

impl<'a, T> DerefMut for AllocatedStackMemory<'a, T>

§

impl<'a, T> DerefMut for MappedMutexGuard<'a, T>where T: ?Sized,

§

impl<'a, T> DerefMut for MutexGuard<'a, T>where T: ?Sized,

§

impl<'rwlock, T> DerefMut for RwLockWriteGuard<'rwlock, T>where T: ?Sized,

§

impl<'s, T> DerefMut for SliceVec<'s, T>

§

impl<A> DerefMut for ArrayVec<A>where A: Array,

§

impl<A> DerefMut for SmallVec<A>where A: Array,

§

impl<A> DerefMut for TinyVec<A>where A: Array,

§

impl<Data> DerefMut for ConnectionCommon<Data>

1.33.0 · source§

impl<P> DerefMut for Pin<P>where P: DerefMut, <P as Deref>::Target: Unpin,

source§

impl<S> DerefMut for Ascii<S>

source§

impl<S> DerefMut for UniCase<S>

§

impl<S> DerefMut for BlockingStream<S>where S: Stream + Unpin,

source§

impl<T> !DerefMut for &Twhere T: ?Sized,

source§

impl<T> DerefMut for &mut Twhere T: ?Sized,

source§

impl<T> DerefMut for kvarn::prelude::compact_str::core::cell::RefMut<'_, T>where T: ?Sized,

1.20.0 (const: unstable) · source§

impl<T> DerefMut for ManuallyDrop<T>where T: ?Sized,

1.9.0 · source§

impl<T> DerefMut for AssertUnwindSafe<T>

source§

impl<T> DerefMut for ThinBox<T>where T: ?Sized,

1.12.0 · source§

impl<T> DerefMut for PeekMut<'_, T>where T: Ord,

source§

impl<T> DerefMut for std::sync::mutex::MutexGuard<'_, T>where T: ?Sized,

source§

impl<T> DerefMut for std::sync::rwlock::RwLockWriteGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for CachePadded<T>

§

impl<T> DerefMut for ConnectionCommon<T>

§

impl<T> DerefMut for MutexGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for MutexGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for Owned<T>where T: Pointable + ?Sized,

§

impl<T> DerefMut for OwnedMutexGuard<T>where T: ?Sized,

§

impl<T> DerefMut for OwnedMutexGuard<T>where T: ?Sized,

§

impl<T> DerefMut for OwnedRwLockWriteGuard<T>where T: ?Sized,

§

impl<T> DerefMut for RwLockMappedWriteGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for RwLockWriteGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for ShardedLockWriteGuard<'_, T>where T: ?Sized,

§

impl<T> DerefMut for Slice<T>where T: IoBufMut,

§

impl<T> DerefMut for UniqueArc<T>where T: ?Sized,

const: unstable · source§

impl<T, A> DerefMut for Box<T, A>where A: Allocator, T: ?Sized,

source§

impl<T, A> DerefMut for Vec<T, A>where A: Allocator,

§

impl<T, F> DerefMut for Lazy<T, F>where F: FnOnce() -> T,

§

impl<T, F> DerefMut for Lazy<T, F>where F: FnOnce() -> T,

source§

impl<T, F, S> DerefMut for ScopeGuard<T, F, S>where F: FnOnce(T), S: Strategy,

§

impl<T, N> DerefMut for GenericArray<T, N>where N: ArrayLength<T>,

§

impl<T, U> DerefMut for MappedMutexGuard<'_, T, U>where T: ?Sized, U: ?Sized,

§

impl<T, U> DerefMut for OwnedMappedMutexGuard<T, U>where T: ?Sized, U: ?Sized,

§

impl<T, U> DerefMut for OwnedRwLockMappedWriteGuard<T, U>where T: ?Sized, U: ?Sized,