surrealpatch/lib/src/doc/table.rs
2022-02-27 00:01:19 +00:00

18 lines
328 B
Rust

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