Type Definition mongodb::gridfs::Store [] [src]

type Store = Arc<StoreInner>;

Alias for a thread-safe GridFS instance.

Trait Implementations

impl ThreadedStore for Store
[src]

A new GridFS store within the database with prefix 'fs'.

A new GridFS store within the database with a specified prefix.

Creates a new file.

Opens a file by filename.

Opens a file by object ID.

Returns a cursor to all file documents matching the provided filter.

Removes a file from GridFS by filename.

Removes a file from GridFS by object ID.

Inserts a new file from local into GridFS.

Retrieves a file from GridFS into local storage.