pub struct Database { /* private fields */ }
Expand description
Database
is the client-side abstraction of a MongoDB database. It can be used to perform
database-level operations or to obtain handles to specific collections within the database. A
Database
can only be obtained through a Client
by calling either
Client::database
or
Client::database_with_options
.
Database
uses std::sync::Arc
internally,
so it can safely be shared across threads or async tasks. For example:
let db = client.database("items");
for i in 0..5 {
let db_ref = db.clone();
tokio::task::spawn(async move {
let collection = db_ref.collection::<Document>(&format!("coll{}", i));
// Do something with the collection
});
}
Implementations§
Source§impl Database
impl Database
Sourcepub fn aggregate(
&self,
pipeline: impl IntoIterator<Item = Document>,
) -> Aggregate<'_>
pub fn aggregate( &self, pipeline: impl IntoIterator<Item = Document>, ) -> Aggregate<'_>
Runs an aggregation operation.
See the documentation here for more information on aggregations.
await
will return Result<Cursor<Document>>
. If a ClientSession
was provided, the
returned cursor will be a SessionCursor
. If with_type
was
called, the returned cursor will be generic over the T
specified.
These methods can be chained before .await
to set options:
Source§impl Database
impl Database
Sourcepub fn create_collection(&self, name: impl Into<String>) -> CreateCollection<'_>
pub fn create_collection(&self, name: impl Into<String>) -> CreateCollection<'_>
Creates a new collection in the database with the given name
.
Note that MongoDB creates collections implicitly when data is inserted, so this method is not needed if no special options are required.
await
will return Result<()>
.
These methods can be chained before .await
to set options:
Source§impl Database
impl Database
Sourcepub fn drop(&self) -> DropDatabase<'_>
pub fn drop(&self) -> DropDatabase<'_>
Drops the database, deleting all data, collections, and indexes stored in it.
await
will return Result<()>
.
These methods can be chained before .await
to set options:
Source§impl Database
impl Database
Sourcepub fn list_collections(&self) -> ListCollections<'_>
pub fn list_collections(&self) -> ListCollections<'_>
Gets information about each of the collections in the database.
await
will return Result<Cursor<CollectionSpecification>>
.
These methods can be chained before .await
to set options:
Sourcepub fn list_collection_names(&self) -> ListCollections<'_, ListNames>
pub fn list_collection_names(&self) -> ListCollections<'_, ListNames>
Source§impl Database
impl Database
Sourcepub fn run_command(&self, command: Document) -> RunCommand<'_>
pub fn run_command(&self, command: Document) -> RunCommand<'_>
Runs a database-level command.
Note that no inspection is done on doc
, so the command will not use the database’s default
read concern or write concern. If specific read concern or write concern is desired, it must
be specified manually.
Please note that run_command doesn’t validate WriteConcerns passed into the body of the
command document.
await
will return Result<Document>
.
These methods can be chained before .await
to set options:
Sourcepub fn run_cursor_command(&self, command: Document) -> RunCursorCommand<'_>
pub fn run_cursor_command(&self, command: Document) -> RunCursorCommand<'_>
Runs a database-level command and returns a cursor to the response.
await
will return Result<Cursor<Document>>
or a
Result<SessionCursor<Document>>
if a ClientSession
is provided.
These methods can be chained before .await
to set options:
Source§impl Database
impl Database
Sourcepub fn watch(&self) -> Watch<'_>
pub fn watch(&self) -> Watch<'_>
Starts a new ChangeStream
that receives events
for all changes in this database. The stream does not observe changes from system
collections and cannot be started on “config”, “local” or “admin” databases.
See the documentation here on change streams.
Change streams require either a “majority” read concern or no read concern. Anything else will cause a server error.
Note that using a $project
stage to remove any of the _id
, operationType
or ns
fields will cause an error. The driver requires these fields to support resumability. For
more information on resumability, see the documentation for
ChangeStream
.
If the pipeline alters the structure of the returned events, the parsed type will need to be
changed via ChangeStream::with_type
.
await
will return Result<ChangeStream<ChangeStreamEvent<Document>>>
or
Result<SessionChangeStream<ChangeStreamEvent<Document>>>
if a
ClientSession
has been provided.
These methods can be chained before .await
to set options:
Source§impl Database
impl Database
Sourcepub fn selection_criteria(&self) -> Option<&SelectionCriteria>
pub fn selection_criteria(&self) -> Option<&SelectionCriteria>
Gets the read preference of the Database
.
Sourcepub fn read_concern(&self) -> Option<&ReadConcern>
pub fn read_concern(&self) -> Option<&ReadConcern>
Gets the read concern of the Database
.
Sourcepub fn write_concern(&self) -> Option<&WriteConcern>
pub fn write_concern(&self) -> Option<&WriteConcern>
Gets the write concern of the Database
.
Sourcepub fn collection<T: Send + Sync>(&self, name: &str) -> Collection<T>
pub fn collection<T: Send + Sync>(&self, name: &str) -> Collection<T>
Gets a handle to a collection in this database with the provided name. The
Collection
options (e.g. read preference and write concern) will default to those of
this Database
.
For more information on how the generic parameter T
is used, check out the Collection
documentation.
This method does not send or receive anything across the wire to the database, so it can be used repeatedly without incurring any costs from I/O.
Sourcepub fn collection_with_options<T: Send + Sync>(
&self,
name: &str,
options: CollectionOptions,
) -> Collection<T>
pub fn collection_with_options<T: Send + Sync>( &self, name: &str, options: CollectionOptions, ) -> Collection<T>
Gets a handle to a collection in this database with the provided name.
Operations done with this Collection
will use the options specified by
options
and will otherwise default to those of this Database
.
For more information on how the generic parameter T
is used, check out the Collection
documentation.
This method does not send or receive anything across the wire to the database, so it can be used repeatedly without incurring any costs from I/O.
Sourcepub fn gridfs_bucket(
&self,
options: impl Into<Option<GridFsBucketOptions>>,
) -> GridFsBucket
pub fn gridfs_bucket( &self, options: impl Into<Option<GridFsBucketOptions>>, ) -> GridFsBucket
Creates a new GridFsBucket
in the database with the given options.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Database
impl !RefUnwindSafe for Database
impl Send for Database
impl Sync for Database
impl Unpin for Database
impl !UnwindSafe for Database
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.