1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use crate::prelude::*;

#[derive(Debug, Clone, PartialEq)]
pub struct JsonExtractLastArrayElem<'a> {
    pub(crate) expr: Box<Expression<'a>>,
}

/// This is an internal function used to help construct the JsonArrayEndsInto Comparable
pub(crate) fn json_extract_last_array_elem<'a, E>(expr: E) -> Function<'a>
where
    E: Into<Expression<'a>>,
{
    let fun = JsonExtractLastArrayElem {
        expr: Box::new(expr.into()),
    };

    fun.into()
}

#[derive(Debug, Clone, PartialEq)]
pub struct JsonExtractFirstArrayElem<'a> {
    pub(crate) expr: Box<Expression<'a>>,
}

/// This is an internal function used to help construct the JsonArrayBeginsWith Comparable
pub(crate) fn json_extract_first_array_elem<'a, E>(expr: E) -> Function<'a>
where
    E: Into<Expression<'a>>,
{
    let fun = JsonExtractFirstArrayElem {
        expr: Box::new(expr.into()),
    };

    fun.into()
}