surrealpatch/src/doc/store.rs
2022-02-06 01:14:56 +00:00

18 lines
326 B
Rust

use crate::dbs::Executor;
use crate::dbs::Options;
use crate::dbs::Runtime;
use crate::dbs::Statement;
use crate::doc::Document;
use crate::err::Error;
impl Document {
pub async fn store(
&self,
_ctx: &Runtime,
_opt: &Options<'_>,
_exe: &Executor<'_>,
_stm: &Statement<'_>,
) -> Result<(), Error> {
Ok(())
}
}