1use crate::sql::part::Part; 2use crate::sql::value::Value; 3 4impl Value { 5 pub fn all(&self) -> Self { 6 self.pick(&[Part::All]) 7 } 8}