Struct shmem::MapRef [] [src]

pub struct MapRef<'a, T: Copy + 'static> {
    // some fields omitted
}

A mapping from a shared object to a type.

Trait Implementations

impl<'a, T: Copy + 'static> Deref for MapRef<'a, T>
[src]

type Target = T

The resulting type after dereferencing

fn deref(&self) -> &Self::Target

The method called to dereference a value

impl<'a, T: Copy + 'static> Drop for MapRef<'a, T>
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more