pub struct GridFSBucket { /* private fields */ }
Expand description

GridFS bucket. A prefix under which a GridFS system’s collections are stored. Spec

Implementations§

Given a @id, delete this stored file’s files collection document and associated chunks from a GridFS bucket. Spec

 use mongodb_gridfs::{GridFSBucket, GridFSError};
 let bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
 bucket.delete(id).await?;
Errors

Raise GridFSError::FileNotFound when the requested id doesn’t exists.

Opens a Stream from which the application can read the contents of the stored file specified by @id. Spec

Returns a [Stream].

Examples
use tokio_stream::StreamExt;
use mongodb_gridfs::{options::GridFSBucketOptions, GridFSBucket, GridFSError};
let bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
let (mut cursor, filename) = bucket.open_download_stream_with_filename(id).await?;
assert_eq!(filename, "test.txt");
let buffer = cursor.next().await.unwrap();
Errors

Raise GridFSError::FileNotFound when the requested id doesn’t exists.

Opens a Stream from which the application can read the contents of the stored file specified by @id. Spec

Returns a [Stream].

Examples
use tokio_stream::StreamExt;
use mongodb_gridfs::{options::GridFSBucketOptions, GridFSBucket, GridFSError};
let bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
let mut cursor = bucket.open_download_stream(id).await?;
let buffer = cursor.next().await.unwrap();
Errors

Raise GridFSError::FileNotFound when the requested id doesn’t exists.

Drops the files and chunks collections associated with this bucket. Spec

Find and return the files collection documents that match @filter. Spec

Examples
use bson::doc;
use tokio_stream::StreamExt;
use mongodb_gridfs::{bucket::GridFSBucket, options::GridFSFindOptions};

let mut cursor = bucket
        .find(doc! {"filename":"test.txt"}, GridFSFindOptions::default())
        .await?;

    while let Some(_doc) = cursor.next().await {
        // ...
    }

Renames the stored file with the specified @id. Spec

Uploads a user file to a GridFS bucket. The driver generates the file id.

Reads the contents of the user file from the @source Stream and uploads it as chunks in the chunks collection. After all the chunks have been uploaded, it creates a files collection document for @filename in the files collection.

Returns the id of the uploaded file.

Note: this method is provided for backward compatibility. In languages that use generic type parameters, this method may be omitted since the TFileId type might not be an ObjectId.

Examples
use mongodb_gridfs::{options::GridFSBucketOptions, GridFSBucket};
let mut bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
let id = bucket
    .upload_from_stream("test.txt", "stream your data here".as_bytes(), None)
    .await?;

Create a new GridFSBucket object on @db with the given @options.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.