Skip to content

Commit db6f82c

Browse files
author
Grégoire Geis
committed
Made AggregateValue implement BasicValue instead of AnyValue.
1 parent e37f1bb commit db6f82c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/values/traits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ macro_rules! trait_value_set {
2323
}
2424

2525
/// Represents an aggregate value, built on top of other values.
26-
pub trait AggregateValue: AnyValue {
26+
pub trait AggregateValue: BasicValue {
2727
/// Returns an enum containing a typed version of the `AggregateValue`.
2828
fn as_aggregate_value_enum(&self) -> AggregateValueEnum {
2929
AggregateValueEnum::new(self.as_value_ref())

0 commit comments

Comments
 (0)