Struct shared_memory::SharedMemRaw[][src]

pub struct SharedMemRaw { /* fields omitted */ }

Raw shared memory mapping

This feature is only useful when dealing with memory mappings not managed by this crate. When all processes involed use the shared_memory crate, it is highly recommended to avoid SharedMemRaw and use the much safer/full-featured SharedMem.

Methods

impl SharedMemRaw
[src]

Creates a raw mapping

Opens a raw mapping

Returns the size of the raw mapping

Returns the OS specific path of the raw mapping

Returns a void pointer to the first address of the mapping

Trait Implementations

impl ReadRaw for SharedMemRaw
[src]

Returns a read only reference to D casted onto the shared memory

Returns a read only reference to a slice of D casted onto the shared memory

impl WriteRaw for SharedMemRaw
[src]

Returns a mutable reference to D casted onto the shared memory

Returns a mutable reference to a slice of D casted onto the shared memory

Auto Trait Implementations

impl !Send for SharedMemRaw

impl !Sync for SharedMemRaw