Trait wasmtime_wiggle::bitflags::_core::ops::Deref1.0.0[][src]

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

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.

Required methods

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

Dereferences the value.

Implementations on Foreign Types

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

type Target = T

pub fn deref(&self) -> &T[src]

impl Deref for PathBuf[src]

type Target = Path

pub fn deref(&self) -> &Path[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = [u8]

pub fn deref(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

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

type Target = [u8]

pub fn deref(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

impl Deref for OsString[src]

type Target = OsStr

pub fn deref(&self) -> &OsStr[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

impl Deref for CString[src]

type Target = CStr

pub fn deref(&self) -> &CStr[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = B

pub fn deref(&self) -> &B[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

impl Deref for String[src]

type Target = str

pub fn deref(&self) -> &str[src]

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

type Target = [T]

pub fn deref(&self) -> &[T]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

impl Deref for Error[src]

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

pub fn deref(&self) -> &<Error as Deref>::Target[src]

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

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

pub fn deref(&self) -> &[<A as Array>::Item]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]

impl Deref for VariableArgs

type Target = [Value]

pub fn deref(&self) -> &[Value]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]

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

type Target = [u8]

pub fn deref(&self) -> &<EndianSlice<'input, Endian> as Deref>::Target

impl<W> Deref for DebugLocLists<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugAbbrev<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugFrame<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugLineStr<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugStr<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugRngLists<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for EhFrame<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugRanges<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugLoc<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<Endian, T> Deref for EndianReader<Endian, T> where
    T: CloneStableDeref<Target = [u8]> + Debug,
    Endian: Endianity, 

type Target = [u8]

pub fn deref(&self) -> &<EndianReader<Endian, T> as Deref>::Target

impl<W> Deref for DebugInfo<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

impl<W> Deref for DebugLine<W> where
    W: Writer, 

type Target = W

pub fn deref(&self) -> &W

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

type Target = <L as Deref>::Target

pub fn deref(&self) -> &<Either<L, R> as Deref>::Target

Notable traits for Either<L, R>

impl<L, R> Iterator for Either<L, R> where
    R: Iterator<Item = <L as Iterator>::Item>,
    L: Iterator
type Item = <L as Iterator>::Item;
[src]

impl Deref for VMExternRef

type Target = dyn Any + 'static

pub fn deref(&self) -> &(dyn Any + 'static)

Implementors

impl Deref for EnteredSpan[src]

type Target = Span

pub fn deref(&self) -> &Span[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

impl<'a> Deref for GuestStr<'a>[src]

type Target = str

pub fn deref(&self) -> &<GuestStr<'a> as Deref>::Target[src]

impl<'a> Deref for GuestStrMut<'a>[src]

type Target = str

pub fn deref(&self) -> &<GuestStrMut<'a> as Deref>::Target[src]

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

type Target = VaListImpl<'f>

pub fn deref(&self) -> &VaListImpl<'f>[src]

impl<'a, T> Deref for GuestSlice<'a, T>[src]

type Target = [T]

pub fn deref(&self) -> &<GuestSlice<'a, T> as Deref>::Target[src]

impl<'a, T> Deref for GuestSliceMut<'a, T>[src]

type Target = [T]

pub fn deref(&self) -> &<GuestSliceMut<'a, T> as Deref>::Target[src]

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

type Target = <P as Deref>::Target

pub fn deref(&self) -> &<P as Deref>::Target[src]

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

type Target = T

pub fn deref(&self) -> &T[src]

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

type Target = T

pub fn deref(&self) -> &T[src]