Trait DerefMut

1.0.0 (const: unstable) · Source
pub trait DerefMut: Deref {
    // Required method
    fn deref_mut(&mut self) -> &mut Self::Target;
}
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 “mutable deref coercion”. In immutable contexts, Deref is used.

Warning: Deref coercion is a powerful language feature which has far-reaching implications for every type that implements DerefMut. The compiler will silently insert calls to DerefMut::deref_mut. For this reason, one should be careful about implementing DerefMut and only do so when mutable deref coercion is desirable. See the Deref docs for advice on when this is typically desirable or undesirable.

Types that implement DerefMut or Deref are often called “smart pointers” and the mechanism of deref coercion has been specifically designed to facilitate the pointer-like behavior that name suggests. Often, the purpose of a “smart pointer” type is to change the ownership semantics of a contained value (for example, Rc or Cow) or the storage semantics of a contained value (for example, Box).

§Mutable deref coercion

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

  • In mutable contexts, *v (where T is neither a reference nor a raw pointer) is equivalent to *DerefMut::deref_mut(&mut v).
  • 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.

§Fallibility

This trait’s method should never unexpectedly fail. Deref coercion means the compiler will often insert calls to DerefMut::deref_mut implicitly. Failure during dereferencing can be extremely confusing when DerefMut is invoked implicitly. In the majority of uses it should be infallible, though it may be acceptable to panic if the type is misused through programmer error, for example.

However, infallibility is not enforced and therefore not guaranteed. As such, unsafe code should not rely on infallibility in general for soundness.

§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§

1.0.0 · Source

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

Mutably dereferences the value.

Implementors§

Source§

impl DerefMut for rustls::conn::connection::Connection

Source§

impl DerefMut for rustls::quic::connection::Connection

Source§

impl DerefMut for BStr

Source§

impl DerefMut for BString

Source§

impl DerefMut for BoxBytes

Source§

impl DerefMut for DebouncedEvent

Source§

impl DerefMut for rustls::client::client_conn::connection::ClientConnection

Source§

impl DerefMut for UnbufferedClientConnection

Source§

impl DerefMut for BorrowedPayload<'_>

Source§

impl DerefMut for rustls::quic::connection::ClientConnection

Source§

impl DerefMut for rustls::quic::connection::ServerConnection

Source§

impl DerefMut for rustls::server::server_conn::connection::ServerConnection

Source§

impl DerefMut for UnbufferedServerConnection

Source§

impl DerefMut for ByteString

Source§

impl DerefMut for OriginalUri

Source§

impl DerefMut for BytesMut

Source§

impl DerefMut for ByteStr

Source§

impl DerefMut for Error

1.3.0 · Source§

impl DerefMut for String

Source§

impl DerefMut for And

Source§

impl DerefMut for At

Source§

impl DerefMut for Caret

Source§

impl DerefMut for Colon

Source§

impl DerefMut for Comma

Source§

impl DerefMut for Dollar

Source§

impl DerefMut for Dot

Source§

impl DerefMut for Eq

Source§

impl DerefMut for Gt

Source§

impl DerefMut for Lt

Source§

impl DerefMut for Minus

Source§

impl DerefMut for Not

Source§

impl DerefMut for Or

Source§

impl DerefMut for Percent

Source§

impl DerefMut for Plus

Source§

impl DerefMut for Pound

Source§

impl DerefMut for Question

Source§

impl DerefMut for Semi

Source§

impl DerefMut for Slash

Source§

impl DerefMut for Star

Source§

impl DerefMut for Tilde

Source§

impl DerefMut for Underscore

1.44.0 · Source§

impl DerefMut for OsString

1.68.0 · Source§

impl DerefMut for PathBuf

Source§

impl<'a> DerefMut for Shlex<'a>

Source§

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

1.36.0 · Source§

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

Source§

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

Source§

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

Source§

impl<'a, B> DerefMut for MutBorrowedBit<'a, B>
where B: BitBlock,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<'a, T> DerefMut for rustmax::prelude::vec::PeekMut<'a, T>

Source§

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

Source§

impl<'a, T, F> DerefMut for PoolGuard<'a, T, F>
where T: Send, F: Fn() -> T,

Source§

impl<'i> DerefMut for DeArray<'i>

Source§

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

Source§

impl<B, T> DerefMut for zerocopy::ref::def::Ref<B, T>

Source§

impl<B, T> DerefMut for zerocopy::Ref<B, [T]>

Source§

impl<B, T> DerefMut for zerocopy::Ref<B, T>

Source§

impl<Data> DerefMut for rustls::quic::connection::ConnectionCommon<Data>

Source§

impl<I> DerefMut for SubImage<I>
where I: DerefMut,

Source§

impl<K, V, S> DerefMut for AHashMap<K, V, S>

Source§

impl<L, R> DerefMut for Either<L, R>
where L: DerefMut, R: DerefMut<Target = <L as Deref>::Target>,

Source§

impl<P, Container> DerefMut for ImageBuffer<P, Container>
where P: Pixel, Container: Deref<Target = [<P as Pixel>::Subpixel]> + DerefMut,

1.33.0 · Source§

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

Source§

impl<S> DerefMut for State<S>

Source§

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

1.0.0 · Source§

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

1.0.0 (const: unstable) · Source§

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

Source§

impl<T> DerefMut for fd_lock::write_guard::RwLockWriteGuard<'_, T>
where T: AsFd,

Source§

impl<T> DerefMut for AutoFinisher<T>
where T: AutoFinish,

Source§

impl<T> DerefMut for nix::fcntl::Flock<T>
where T: Flockable,

Source§

impl<T> DerefMut for nix::fcntl::Flock<T>
where T: Flockable,

Source§

impl<T> DerefMut for rustls::conn::ConnectionCommon<T>

Source§

impl<T> DerefMut for PlaneData<T>
where T: Pixel,

Source§

impl<T> DerefMut for zerocopy::wrappers::Unalign<T>
where T: Unaligned,

Source§

impl<T> DerefMut for zerocopy::wrappers::Unalign<T>
where T: Unaligned,

Source§

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

Source§

impl<T> DerefMut for ConnectInfo<T>

Source§

impl<T> DerefMut for Path<T>

Source§

impl<T> DerefMut for Query<T>

Source§

impl<T> DerefMut for Extension<T>

Source§

impl<T> DerefMut for Form<T>

Source§

impl<T> DerefMut for Json<T>

1.0.0 (const: unstable) · Source§

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

1.20.0 · 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 Owned<T>
where T: Pointable + ?Sized,

Source§

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

Source§

impl<T> DerefMut for CachePadded<T>

Source§

impl<T> DerefMut for UniquePtr<T>

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<T> DerefMut for rustmax::std::sync::nonpoison::MappedMutexGuard<'_, T>
where T: ?Sized,

Source§

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

Source§

impl<T> DerefMut for rustmax::std::sync::MappedMutexGuard<'_, T>
where T: ?Sized,

Source§

impl<T> DerefMut for rustmax::std::sync::MappedRwLockWriteGuard<'_, T>
where T: ?Sized,

1.0.0 · Source§

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

1.0.0 · Source§

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

Source§

impl<T, A> DerefMut for ABox<T, A>
where A: Alignment, T: ?Sized,

Source§

impl<T, A> DerefMut for AVec<T, A>
where A: Alignment,

Source§

impl<T, A> DerefMut for GrayAlpha_v08<T, A>

1.12.0 · Source§

impl<T, A> DerefMut for rustmax::alloc::collections::binary_heap::PeekMut<'_, T, A>
where T: Ord, A: Allocator,

Source§

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

Source§

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

1.0.0 · Source§

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

1.0.0 · Source§

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

Source§

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

Source§

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

1.89.0 · Source§

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

Source§

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

1.89.0 · Source§

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

Source§

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

Source§

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

Source§

impl<T, S> DerefMut for AHashSet<T, S>

Source§

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

Source§

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

Source§

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

Source§

impl<T, const CAP: usize> DerefMut for ArrayVec<T, CAP>

Source§

impl<Z> DerefMut for Zeroizing<Z>
where Z: Zeroize,

Source§

impl<const CAP: usize> DerefMut for ArrayString<CAP>