Trait tor_hsservice::internal_prelude::DerefMut

1.0.0 · source ·
pub(crate) 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 behaviour 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 CTorPath

1.3.0 · source§

impl DerefMut for String

1.44.0 · source§

impl DerefMut for OsString

source§

impl DerefMut for Asn1BitString

source§

impl DerefMut for Asn1Enumerated

source§

impl DerefMut for Asn1GeneralizedTime

source§

impl DerefMut for Asn1Integer

source§

impl DerefMut for Asn1Object

source§

impl DerefMut for Asn1OctetString

source§

impl DerefMut for Asn1String

source§

impl DerefMut for Asn1Time

source§

impl DerefMut for BigNum

source§

impl DerefMut for BigNumContext

source§

impl DerefMut for Cipher

source§

impl DerefMut for CipherCtx

source§

impl DerefMut for CmsContentInfo

source§

impl DerefMut for Conf

source§

impl DerefMut for DsaSig

source§

impl DerefMut for EcGroup

source§

impl DerefMut for EcPoint

source§

impl DerefMut for EcdsaSig

source§

impl DerefMut for DigestBytes

source§

impl DerefMut for LibCtx

source§

impl DerefMut for Md

source§

impl DerefMut for MdCtx

source§

impl DerefMut for OcspBasicResponse

source§

impl DerefMut for OcspCertId

source§

impl DerefMut for OcspOneReq

source§

impl DerefMut for OcspRequest

source§

impl DerefMut for OcspResponse

source§

impl DerefMut for Pkcs7

source§

impl DerefMut for Pkcs7Signed

source§

impl DerefMut for Pkcs7SignerInfo

source§

impl DerefMut for Pkcs12

source§

impl DerefMut for Provider

source§

impl DerefMut for SrtpProtectionProfile

source§

impl DerefMut for ConnectConfiguration

source§

impl DerefMut for SslAcceptorBuilder

source§

impl DerefMut for SslConnectorBuilder

source§

impl DerefMut for Ssl

source§

impl DerefMut for SslCipher

source§

impl DerefMut for SslContext

source§

impl DerefMut for SslSession

source§

impl DerefMut for OpensslString

source§

impl DerefMut for X509Store

source§

impl DerefMut for X509StoreBuilder

source§

impl DerefMut for AccessDescription

source§

impl DerefMut for DistPoint

source§

impl DerefMut for DistPointName

source§

impl DerefMut for GeneralName

source§

impl DerefMut for X509

source§

impl DerefMut for X509Algorithm

source§

impl DerefMut for X509Crl

source§

impl DerefMut for X509Extension

source§

impl DerefMut for X509Name

source§

impl DerefMut for X509NameEntry

source§

impl DerefMut for X509Object

source§

impl DerefMut for X509Req

source§

impl DerefMut for X509Revoked

source§

impl DerefMut for X509StoreContext

source§

impl DerefMut for X509VerifyParam

source§

impl DerefMut for ByteBuf

source§

impl DerefMut for Bytes

1.68.0 · source§

impl DerefMut for PathBuf

§

impl DerefMut for AsciiString

§

impl DerefMut for BytesMut

§

impl DerefMut for ClientConnection

§

impl DerefMut for ClientConnection

§

impl DerefMut for Connection

§

impl DerefMut for Connection

§

impl DerefMut for DocumentMut

§

impl DerefMut for OptionsMap

§

impl DerefMut for ServerConnection

§

impl DerefMut for ServerConnection

§

impl DerefMut for UnbufferedClientConnection

§

impl DerefMut for UnbufferedServerConnection

source§

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

1.36.0 · source§

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

§

impl<'a> DerefMut for BorrowedPayload<'a>

§

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

source§

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

§

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 MappedMutexGuard<'a, T>
where T: ?Sized,

§

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

§

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

§

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

§

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

§

impl<'t, T> DerefMut for tor_hsservice::internal_prelude::watch::RefMut<'t, T>

source§

impl<'v, R: SleepProvider> DerefMut for NotifyingBorrow<'v, R>

§

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<A, O> DerefMut for BitArray<A, O>
where A: BitViewSized, O: BitOrder,

§

impl<B, T> DerefMut for Ref<B, [T]>
where B: ByteSliceMut, T: FromBytes + AsBytes,

§

impl<B, T> DerefMut for Ref<B, T>
where B: ByteSliceMut, T: FromBytes + AsBytes,

§

impl<Data> DerefMut for ConnectionCommon<Data>

§

impl<K, V> DerefMut for TiVec<K, V>

source§

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

1.33.0 · source§

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

§

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

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

source§

impl<T> DerefMut for Redacted<T>
where T: Redactable,

source§

impl<T> DerefMut for Sensitive<T>

source§

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

source§

impl<T> DerefMut for UniqueRc<T>

1.0.0 · source§

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

1.20.0 · source§

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

source§

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

source§

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

1.0.0 · source§

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

source§

impl<T> DerefMut for Serde<T>

source§

impl<T> DerefMut for Dh<T>

source§

impl<T> DerefMut for Dsa<T>

source§

impl<T> DerefMut for EcKey<T>

source§

impl<T> DerefMut for PKey<T>

source§

impl<T> DerefMut for PkeyCtx<T>

source§

impl<T> DerefMut for Rsa<T>

source§

impl<T> DerefMut for Stack<T>
where T: Stackable,

source§

impl<T> DerefMut for X509Lookup<T>

source§

impl<T> DerefMut for X509LookupMethod<T>

1.9.0 · source§

impl<T> DerefMut for AssertUnwindSafe<T>

source§

impl<T> DerefMut for DropNotifyWatchSender<T>

1.0.0 · source§

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

§

impl<T> DerefMut for ByAddress<T>
where T: Deref + ?Sized,

§

impl<T> DerefMut for ByThinAddress<T>
where T: Deref + ?Sized,

§

impl<T> DerefMut for CachePadded<T>

§

impl<T> DerefMut for ConnectionCommon<T>

§

impl<T> DerefMut for FmtBinary<T>
where T: Binary,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtDisplay<T>
where T: Display,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtList<T>
where &'a T: for<'a> IntoIterator,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtLowerExp<T>
where T: LowerExp,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtLowerHex<T>
where T: LowerHex,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtOctal<T>
where T: Octal,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtPointer<T>
where T: Pointer,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtUpperExp<T>
where T: UpperExp,

Available on non-tarpaulin_include only.
§

impl<T> DerefMut for FmtUpperHex<T>
where T: UpperHex,

Available on non-tarpaulin_include only.
§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> DerefMut for OrderedFloat<T>
where T: Float,

§

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 RwLockWriteGuard<'_, T>
where T: ?Sized,

§

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

§

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

§

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

§

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

§

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

1.0.0 · source§

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

1.12.0 · source§

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

1.0.0 · source§

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

§

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

§

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

§

impl<T, D> DerefMut for FramedRead<T, D>

§

impl<T, E> DerefMut for FramedWrite<T, E>

§

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, O> DerefMut for BitBox<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> DerefMut for BitRef<'_, Mut, T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> DerefMut for BitVec<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, U> DerefMut for Framed<T, U>

§

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,

source§

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

§

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

source§

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

source§

impl<const N: usize> DerefMut for ByteArray<N>