surrealpatch/src/doc/insert.rs

20 lines
361 B
Rust
Raw Normal View History

use crate::dbs::Executor;
use crate::dbs::Options;
use crate::dbs::Runtime;
use crate::dbs::Statement;
use crate::doc::Document;
use crate::err::Error;
use crate::sql::value::Value;
2022-01-13 07:00:50 +00:00
impl Document {
pub async fn insert(
&mut self,
_ctx: &Runtime,
_opt: &Options,
_exe: &Executor<'_>,
_stm: &Statement<'_>,
) -> Result<Value, Error> {
todo!()
}
}