1.0.0[][src]Trait geng::prelude::structopt::lazy_static::__Deref

#[lang = "deref"]pub trait __Deref {
    type Target: ?Sized;
#[must_use]    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

The resulting type after dereferencing.

Loading content...

Required methods

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

Dereferences the value.

Loading content...

Implementations on Foreign Types

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, F> Deref for SyncLazy<T, F> where
    F: FnOnce() -> T, 
[src]

type Target = T

impl Deref for CString[src]

type Target = CStr

impl Deref for OsString[src]

type Target = OsStr

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

type Target = T

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

type Target = T

impl Deref for PathBuf[src]

type Target = Path

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

type Target = T

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

type Target = T

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

type Target = VaListImpl<'f>

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

type Target = T

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

type Target = [T]

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

type Target = T

impl Deref for String[src]

type Target = str

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

type Target = B

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

type Target = T

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

type Target = S

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

type Target = [u8]

impl<T> Deref for VertexBuffer<T> where
    T: Vertex
[src]

type Target = Vec<T>

impl<'a, T> Deref for VertexBufferSlice<'a, T> where
    T: 'a + Vertex
[src]

type Target = [T]

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

type Target = FramebufferRead<'a>

impl<T, W> Deref for ContextWrapper<T, W> where
    T: ContextCurrentState
[src]

type Target = Context<T>

impl Deref for Window

type Target = UnownedWindow

impl<T> Deref for EventLoop<T>

type Target = EventLoopWindowTarget<T>

impl<'a, T> Deref for XSmartPointer<'a, T>

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

type Target = T

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

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

impl Deref for ThemedPointer

type Target = WlPointer

impl<T> Deref for Symbol<T>

type Target = T

impl<'lib, T> Deref for Symbol<'lib, T>

type Target = T

impl Deref for Display

type Target = Proxy<WlDisplay>

impl<I> Deref for Attached<I> where
    I: Interface, 

type Target = I

impl<I> Deref for Main<I> where
    I: Interface + AsRef<Proxy<I>> + From<Proxy<I>>, 

type Target = Attached<I>

impl Deref for WAYLAND_CLIENT_OPTION

type Target = Option<WaylandClient>

impl Deref for WAYLAND_CLIENT_HANDLE

type Target = &'static WaylandClient

impl Deref for WAYLAND_EGL_HANDLE

type Target = &'static WaylandEgl

impl Deref for WAYLAND_EGL_OPTION

type Target = Option<WaylandEgl>

impl Deref for MmapMut[src]

type Target = [u8]

impl Deref for Mmap[src]

type Target = [u8]

impl Deref for CursorImageBuffer

type Target = WlBuffer

impl<T> Deref for Owned<T>

type Target = T

impl<'a, T> Deref for ShardedLockWriteGuard<'a, T> where
    T: ?Sized

type Target = T

impl<'a, T> Deref for ShardedLockReadGuard<'a, T> where
    T: ?Sized

type Target = T

impl<T> Deref for CachePadded<T>

type Target = T

impl Deref for UnixReady[src]

type Target = Ready

impl Deref for IoVec

type Target = [u8]

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

type Target = [<P as Pixel>::Subpixel]

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

type Target = T

impl<T> Deref for CachePadded<T>

type Target = T

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

type Target = T

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

type Target = T

impl Deref for BytesMut[src]

type Target = [u8]

impl Deref for Bytes[src]

type Target = [u8]

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

type Target = [T]

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<A> Deref for TinyVec<A> where
    A: Array, 

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

impl<'a> Deref for Selem<'a>

type Target = Elem<'a>

pub fn deref(&self) -> &Elem<'a>

returns the elem of this selem

impl Deref for MilliBel

type Target = i64

impl<T> Deref for SliceDeque<T>

type Target = [T]

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

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

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

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

Loading content...

Implementors

impl Deref for Error[src]

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

impl Deref for Slider[src]

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

type Target = Waker

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

type Target = T

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<'_, T, U> Deref for geng::prelude::futures::lock::MappedMutexGuard<'_, T, U> where
    T: ?Sized,
    U: ?Sized
[src]

type Target = U

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

type Target = [u8]

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

type Target = [u8]

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

type Target = Vec<Box<dyn Widget + 'a>>

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

type Target = Vec<Box<dyn Widget + 'a>>

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

type Target = Vec<Box<dyn Widget + 'a>>

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

type Target = <P as Deref>::Target

impl<S> Deref for BlockingStream<S> where
    S: Unpin + Stream
[src]

type Target = S

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

type Target = T

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

type Target = T

impl<T> Deref for AutoSave<T> where
    T: Serialize
[src]

type Target = T

impl<T> Deref for Color<T> where
    T: ColorComponent
[src]

type Target = [T; 4]

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

type Target = T

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

type Target = [T; 2]

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

type Target = [T; 3]

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

type Target = [T; 4]

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

type Target = T

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

type Target = T

Loading content...