Struct mongodb_gridfs::bucket::GridFSBucket [−][src]
pub struct GridFSBucket { /* fields omitted */ }
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.
pub async fn open_download_stream(
&self,
id: ObjectId
) -> Result<impl Stream<Item = Vec<u8>>, GridFSError>
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 futures::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.
Find and return the files collection documents that match @filter. Spec
Examples
use bson::doc; use futures::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 { // ... }
pub async fn upload_from_stream<'a>(
self,
filename: &str,
source: impl Read,
options: Option<GridFSUploadOptions<'a>>
) -> Result<ObjectId, Error>
pub async fn upload_from_stream<'a>(
self,
filename: &str,
source: impl Read,
options: Option<GridFSUploadOptions<'a>>
) -> 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 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
Auto Trait Implementations
impl !RefUnwindSafe for GridFSBucket
impl Send for GridFSBucket
impl Sync for GridFSBucket
impl Unpin for GridFSBucket
impl !UnwindSafe for GridFSBucket
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V