surrealpatch/src/doc/index.rs

19 lines
336 B
Rust
Raw Normal View History

use crate::dbs::Options;
use crate::dbs::Runtime;
use crate::dbs::Statement;
use crate::dbs::Transaction;
use crate::doc::Document;
use crate::err::Error;
2022-01-13 07:00:50 +00:00
impl<'a> Document<'a> {
pub async fn index(
&self,
_ctx: &Runtime,
_opt: &Options,
_txn: &Transaction<'_>,
_stm: &Statement<'_>,
) -> Result<(), Error> {
Ok(())
}
}