Struct json::decoder::Element [] [src]

pub struct Element<A> {
    pub value: A,
    pub is_last: bool,
}

JSON array element.

Fields

The decoded value.

Is this the last array element?