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
use crate::expr::part::Part;
use crate::val::Value;

impl Value {
	/// Returns the equivalent of `self.pick(&[Part::All])`
	pub fn all(&self) -> Self {
		self.pick(&[Part::All])
	}
}