Struct fst::raw::MmapReadOnly[][src]

pub struct MmapReadOnly { /* fields omitted */ }

A read only view into a memory map.

Opening a memory map is unsafe because we cannot guarantee that its underlying memory is not mutated by external processes. This read only memory map guarantees that consumers can at least never modify the underlying data.

It is principally useful for controlling which region of a file an Fst reads.

Methods

impl MmapReadOnly
[src]

Create a new memory map from an existing file handle.

This is unsafe because Rust programs cannot guarantee that memory backed by a memory mapped file won't be mutably aliased. It is up to the caller to enforce that the memory map is not modified while it is opened.

Open a new memory map from the path given.

This is unsafe because Rust programs cannot guarantee that memory backed by a memory mapped file won't be mutably aliased. It is up to the caller to enforce that the memory map is not modified while it is opened.

Returns the size in byte of the memory map.

If it is a range, the size is the size of the range.

Slice this memory map to a new offset and len.

If the new range is outside the bounds of self, then this method panics.

Read the memory map as a &[u8].

Trait Implementations

impl Clone for MmapReadOnly
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations