surrealpatch/lib/src/sql/value/all.rs
2022-03-25 21:15:55 +00:00

8 lines
132 B
Rust

use crate::sql::part::Part;
use crate::sql::value::Value;
impl Value {
pub fn all(&self) -> Self {
self.pick(&[Part::All])
}
}