use crate::expression::ValueExprType;
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub enum FunctionCall<E>
where
E: ValueExprType,
{
DurationMillis { duration_millis: Box<E> },
DurationSecs { duration_secs: Box<E> },
FloorTime { target: Box<E>, resolution: Box<E> },
}