[−][src]Type Definition mongodb::gridfs::Store
type Store = Arc<StoreInner>;
Alias for a thread-safe GridFS instance.
Trait Implementations
impl ThreadedStore for Store[src]
impl ThreadedStore for Storefn with_db(db: Database) -> Store[src]
fn with_db(db: Database) -> Storefn with_prefix(db: Database, prefix: String) -> Store[src]
fn with_prefix(db: Database, prefix: String) -> Storefn create(&self, name: String) -> Result<File>[src]
fn create(&self, name: String) -> Result<File>fn open(&self, name: String) -> Result<File>[src]
fn open(&self, name: String) -> Result<File>fn open_id(&self, id: ObjectId) -> Result<File>[src]
fn open_id(&self, id: ObjectId) -> Result<File>fn find(
&self,
filter: Option<Document>,
options: Option<FindOptions>
) -> Result<FileCursor>[src]
fn find(
&self,
filter: Option<Document>,
options: Option<FindOptions>
) -> Result<FileCursor>fn remove(&self, name: String) -> Result<()>[src]
fn remove(&self, name: String) -> Result<()>fn remove_id(&self, id: ObjectId) -> Result<()>[src]
fn remove_id(&self, id: ObjectId) -> Result<()>fn put(&self, name: String) -> Result<()>[src]
fn put(&self, name: String) -> Result<()>fn get(&self, name: String) -> Result<()>[src]
fn get(&self, name: String) -> Result<()>