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]) } }