Skip to main content

Crate outlook_pst

Crate outlook_pst 

Source
Expand description

§outlook-pst

The PST file format is publicly documented in the MS-PST open specification. Data structures and type names generally mimic the concepts and names in that document, with some adjustment for readability and to match Rust language conventions. As much as possible, everything in this crate should have a deep link to the documentation it is based on in the doc comments.

§Unimplemented: PST file modification

This project is suitable for read-only access to PST files, but as with previous public implementations of the PST format, we’ve decided to avoid complicating it with full write support.

However, this version does support Crash Recovery and AMap Rebuilding, which is a step towards supporting Transactional Semantics when modifying a PST file. If you plan on implementing PST file modification, you can use this as a reference for those features.

If you choose to modify the PST files, please be careful to follow all of the guidance in the Maintaining Data Integrity section of the specification to avoid corrupting your PST files in a way that prevents Outlook (or this library) from opening them anymore.

Modules§

ltp
Lists, Tables, and Properties (LTP) Layer
messaging
Messaging Layer
ndb
Node Database (NDB) Layer

Structs§

AnsiPstFile
PstFileLockGuard
This is the public interface for writing to a PST.
UnicodePstFile

Enums§

PstError

Traits§

PstFile
PST File
PstReader

Functions§

open_store