2022-02-06 01:14:56 +00:00
|
|
|
use crate::dbs::Executor;
|
|
|
|
use crate::dbs::Options;
|
|
|
|
use crate::dbs::Runtime;
|
|
|
|
use crate::dbs::Statement;
|
|
|
|
use crate::doc::Document;
|
|
|
|
use crate::err::Error;
|
|
|
|
|
2022-02-13 19:03:00 +00:00
|
|
|
impl<'a> Document<'a> {
|
2022-02-06 01:14:56 +00:00
|
|
|
pub async fn store(
|
|
|
|
&self,
|
|
|
|
_ctx: &Runtime,
|
2022-02-06 21:06:52 +00:00
|
|
|
_opt: &Options,
|
2022-02-06 01:14:56 +00:00
|
|
|
_exe: &Executor<'_>,
|
|
|
|
_stm: &Statement<'_>,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|