surrealpatch/lib/src/sql/query.rs

45 lines
1 KiB
Rust
Raw Normal View History

use crate::sql::fmt::Pretty;
use crate::sql::statement::{Statement, Statements};
2023-08-18 22:51:56 +00:00
use crate::sql::Value;
use derive::Store;
use revision::revisioned;
2020-06-29 15:36:01 +00:00
use serde::{Deserialize, Serialize};
use std::fmt::Write;
use std::fmt::{self, Display, Formatter};
use std::ops::Deref;
2020-06-29 15:36:01 +00:00
use std::str;
2023-08-18 22:51:56 +00:00
pub(crate) const TOKEN: &str = "$surrealdb::private::sql::Query";
#[derive(Clone, Debug, Default, Eq, PartialEq, PartialOrd, Serialize, Deserialize, Store, Hash)]
#[revisioned(revision = 1)]
2023-08-18 22:51:56 +00:00
#[serde(rename = "$surrealdb::private::sql::Query")]
pub struct Query(pub Statements);
2020-06-29 15:36:01 +00:00
impl Deref for Query {
type Target = Vec<Statement>;
fn deref(&self) -> &Self::Target {
&self.0 .0
2020-06-29 15:36:01 +00:00
}
}
impl IntoIterator for Query {
type Item = Statement;
type IntoIter = std::vec::IntoIter<Self::Item>;
fn into_iter(self) -> Self::IntoIter {
self.0.into_iter()
}
}
2023-08-18 22:51:56 +00:00
impl From<Query> for Value {
fn from(q: Query) -> Self {
Value::Query(q)
}
}
impl Display for Query {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(Pretty::from(f), "{}", &self.0)
2020-06-29 15:36:01 +00:00
}
}