Trait otter_api_tests::Deref1.0.0[][src]

#[lang = "deref"]
pub trait Deref {
    type Target: ?Sized;
    #[must_use]
    pub fn deref(&self) -> &Self::Target;
}

Used for immutable dereferencing operations, like *v.

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

Implementing Deref for smart pointers makes accessing the data behind them convenient, which is why they implement Deref. On the other hand, the rules regarding Deref and DerefMut were designed specifically to accommodate smart pointers. Because of this, Deref 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 Deref is invoked implicitly.

More on Deref coercion

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

  • In immutable contexts, *x (where T is neither a reference nor a raw pointer) is equivalent to *Deref::deref(&x).
  • Values of type &T are coerced to values of type &U
  • T implicitly implements all the (immutable) 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 accessible by dereferencing the struct.

use std::ops::Deref;

struct DerefExample<T> {
    value: T
}

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

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

let x = DerefExample { value: 'a' };
assert_eq!('a', *x);

Associated Types

type Target: ?Sized[src]

The resulting type after dereferencing.

Loading content...

Required methods

#[must_use]
pub fn deref(&self) -> &Self::Target
[src]

Dereferences the value.

Loading content...

Implementations on Foreign Types

impl<T> Deref for AssertUnwindSafe<T>[src]

type Target = T

impl Deref for OsString[src]

type Target = OsStr

impl Deref for CString[src]

type Target = CStr

impl<'_, T> Deref for MutexGuard<'_, T> where
    T: ?Sized
[src]

type Target = T

impl<'_, T> Deref for RwLockReadGuard<'_, T> where
    T: ?Sized
[src]

type Target = T

impl<'_, T> Deref for RwLockWriteGuard<'_, T> where
    T: ?Sized
[src]

type Target = T

impl<T, F> Deref for SyncLazy<T, F> where
    F: FnOnce() -> T, 
[src]

type Target = T

impl<'_, T> Deref for &'_ T where
    T: ?Sized
[src]

type Target = T

impl<'_, T> Deref for &'_ mut T where
    T: ?Sized
[src]

type Target = T

impl<T> Deref for Rc<T> where
    T: ?Sized
[src]

type Target = T

impl<T, A> Deref for Vec<T, A> where
    A: Allocator
[src]

type Target = [T]

impl Deref for String[src]

type Target = str

impl<'_, T> Deref for PeekMut<'_, T> where
    T: Ord
[src]

type Target = T

impl<T, A> Deref for Box<T, A> where
    T: ?Sized,
    A: Allocator
[src]

type Target = T

impl Deref for Literal

type Target = Vec<u8, Global>

impl Deref for Timestamp[src]

type Target = SystemTime

impl Deref for Duration[src]

type Target = Duration

impl<'input, Endian> Deref for EndianSlice<'input, Endian> where
    Endian: Endianity, 

type Target = [u8]

impl Deref for UnixReady[src]

type Target = Ready

impl Deref for IoVec

type Target = [u8]

impl<T, F, S> Deref for ScopeGuard<T, F, S> where
    S: Strategy,
    F: FnOnce(T), 
[src]

type Target = T

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

type Target = [<A as Array>::Item]

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

type Target = [<A as Array>::Item]

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

type Target = [T]

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

type Target = [<A as Array>::Item]

impl Deref for TempPath[src]

type Target = Path

impl<'a, S> Deref for ANSIGenericString<'a, S> where
    S: 'a + ToOwned + ?Sized,
    <S as ToOwned>::Owned: Debug

type Target = S

Loading content...

Implementors

impl Deref for Error[src]

type Target = dyn Error + 'static + Sync + Send

impl Deref for PathBuf[src]

type Target = Path

impl Deref for AccessRecord[src]

type Target = Arc<dyn PlayerAccessSpec + 'static>

impl Deref for GLOBAL[src]

type Target = Global

impl Deref for GPieces[src]

impl Deref for Html

type Target = HtmlStr

impl Deref for HtmlLit

type Target = HtmlStr

impl Deref for IPiece[src]

impl Deref for LinksTable[src]

impl Deref for MgmtChannelForGame[src]

type Target = MgmtChannel

impl Deref for PieceRenderInstructions[src]

impl<'_> Deref for InstanceGuard<'_>[src]

type Target = Instance

impl<'_, B> Deref for Cow<'_, B> where
    B: ToOwned + ?Sized
[src]

type Target = B

impl<'_, T> Deref for Ref<'_, T> where
    T: ?Sized
[src]

type Target = T

impl<'_, T> Deref for RefMut<'_, T> where
    T: ?Sized
[src]

type Target = T

impl<'a> Deref for IoSlice<'a>1.36.0[src]

type Target = [u8]

impl<'a> Deref for IoSliceMut<'a>1.36.0[src]

type Target = [u8]

impl<'a, 'f> Deref for VaList<'a, 'f> where
    'f: 'a, 
[src]

type Target = VaListImpl<'f>

impl<'a, R, G, T> Deref for MappedReentrantMutexGuard<'a, R, G, T> where
    T: 'a + ?Sized,
    R: 'a + RawMutex,
    G: 'a + GetThreadId

type Target = T

impl<'a, R, G, T> Deref for ReentrantMutexGuard<'a, R, G, T> where
    T: 'a + ?Sized,
    R: 'a + RawMutex,
    G: 'a + GetThreadId

type Target = T

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

type Target = T

impl<'a, R, T> Deref for MappedRwLockReadGuard<'a, R, T> where
    T: 'a + ?Sized,
    R: 'a + RawRwLock

type Target = T

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

type Target = T

impl<'a, R, T> Deref for otter_api_tests::imports::parking_lot::lock_api::MutexGuard<'a, R, T> where
    T: 'a + ?Sized,
    R: 'a + RawMutex

type Target = T

impl<'a, R, T> Deref for otter_api_tests::imports::parking_lot::lock_api::RwLockReadGuard<'a, R, T> where
    T: 'a + ?Sized,
    R: 'a + RawRwLock

type Target = T

impl<'a, R, T> Deref for RwLockUpgradableReadGuard<'a, R, T> where
    T: 'a + ?Sized,
    R: 'a + RawRwLockUpgrade

type Target = T

impl<'a, R, T> Deref for otter_api_tests::imports::parking_lot::lock_api::RwLockWriteGuard<'a, R, T> where
    T: 'a + ?Sized,
    R: 'a + RawRwLock

type Target = T

impl<A> Deref for ArrayString<A> where
    A: Array<Item = u8> + Copy
[src]

type Target = str

impl<A> Deref for otter_api_tests::shapelib::ArrayVec<A> where
    A: Array
[src]

type Target = [<A as Array>::Item]

impl<I, A> Deref for IndexVec<I, A> where
    I: Idx

type Target = IndexSlice<I, [A]>

impl<L, R> Deref for Either<L, R> where
    L: Deref,
    R: Deref<Target = <L as Deref>::Target>, 
[src]

type Target = <L as Deref>::Target

impl<P> Deref for Pin<P> where
    P: Deref
1.33.0[src]

type Target = <P as Deref>::Target

impl<T> Deref for NotNan<T> where
    T: Float

type Target = T

impl<T> Deref for ManuallyDrop<T> where
    T: ?Sized
1.20.0[src]

type Target = T

impl<T> Deref for Arc<T> where
    T: ?Sized
[src]

type Target = T

impl<T> Deref for OrderedFloat<T> where
    T: Float

type Target = T

impl<T, F> Deref for otter_api_tests::imports::failure::_core::lazy::Lazy<T, F> where
    F: FnOnce() -> T, 
[src]

type Target = T

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

type Target = T

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

type Target = T

impl<T, F> Deref for Thunk<T, F> where
    T: Sync,
    F: Sync + FnOnce() -> T, 
[src]

type Target = T

Loading content...