[][src]Struct osmpbf::mmap_blob::Mmap

pub struct Mmap { /* fields omitted */ }

A read-only memory map.

Methods

impl Mmap[src]

pub unsafe fn from_file(file: &File) -> Result<Mmap>[src]

Creates a memory map from a given file.

Safety

The underlying file should not be modified while holding the memory map. See memmap-rs issue 25 for more information on the safety of memory maps.

Example

use osmpbf::*;

let f = std::fs::File::open("tests/test.osm.pbf")?;
let mmap = unsafe { Mmap::from_file(&f)? };

pub unsafe fn from_path<P: AsRef<Path>>(path: P) -> Result<Mmap>[src]

Creates a memory map from a given path.

Safety

The underlying file should not be modified while holding the memory map. See memmap-rs issue 25 for more information on the safety of memory maps.

Example

use osmpbf::*;

let mmap = unsafe { Mmap::from_path("tests/test.osm.pbf")? };

Important traits for MmapBlobReader<'a>
pub fn blob_iter(&self) -> MmapBlobReader[src]

Returns an iterator over the blobs in this memory map.

Trait Implementations

impl Debug for Mmap[src]

Auto Trait Implementations

impl RefUnwindSafe for Mmap

impl Send for Mmap

impl Sync for Mmap

impl Unpin for Mmap

impl UnwindSafe for Mmap

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.