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

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

Implementations§

source§

impl GridFSBucket

source

pub async fn delete(&self, id: ObjectId) -> Result<(), GridFSError>

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.

source§

impl GridFSBucket

source

pub async fn open_download_stream_with_filename( &self, id: ObjectId ) -> Result<(impl Stream<Item = Vec<u8>>, String), GridFSError>

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.

source

pub async fn open_download_stream( &self, id: ObjectId ) -> Result<impl Stream<Item = Vec<u8>>, GridFSError>

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.

source§

impl GridFSBucket

source

pub async fn drop(&self) -> Result<()>

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

source§

impl GridFSBucket

source

pub async fn find( &self, filter: Document, options: GridFSFindOptions ) -> Result<Cursor<Document>>

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 {
        // ...
    }
source§

impl GridFSBucket

source

pub async fn rename( &self, id: ObjectId, new_filename: &str ) -> Result<UpdateResult>

Renames the stored file with the specified @id. Spec

source§

impl GridFSBucket

source

pub async fn upload_from_stream<'a>( &mut self, filename: &str, source: impl AsyncRead + Unpin, options: Option<GridFSUploadOptions> ) -> Result<ObjectId, Error>

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?;
source§

impl GridFSBucket

source

pub fn new(db: Database, options: Option<GridFSBucketOptions>) -> GridFSBucket

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

Trait Implementations§

source§

impl Clone for GridFSBucket

source§

fn clone(&self) -> GridFSBucket

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GridFSBucket

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V