surrealpatch/lib/src/sql/value/all.rs

9 lines
132 B
Rust
Raw Normal View History

2022-03-25 18:43:22 +00:00
use crate::sql::part::Part;
use crate::sql::value::Value;
impl Value {
pub fn all(&self) -> Self {
self.pick(&[Part::All])
2022-03-25 18:43:22 +00:00
}
}