surrealdb-core 3.2.0

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
1
2
3
4
5
6
7
8
9
10
11
use surrealdb_types::{SqlFormat, ToSql};

#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Hash)]
pub(crate) struct Explain(pub bool);

impl ToSql for Explain {
	fn fmt_sql(&self, f: &mut String, sql_fmt: SqlFormat) {
		let explain: crate::sql::Explain = (*self).into();
		explain.fmt_sql(f, sql_fmt);
	}
}