Struct sylvia_iot_data::models::application_dldata::ListQueryCond
source · pub struct ListQueryCond<'a> {
pub unit_id: Option<&'a str>,
pub device_id: Option<&'a str>,
pub network_code: Option<&'a str>,
pub network_addr: Option<&'a str>,
pub proc_gte: Option<DateTime<Utc>>,
pub proc_lte: Option<DateTime<Utc>>,
pub resp_gte: Option<DateTime<Utc>>,
pub resp_lte: Option<DateTime<Utc>>,
}
Expand description
The query condition for the list operation.
Fields§
§unit_id: Option<&'a str>
To get the specified unit.
device_id: Option<&'a str>
To get the specified device.
network_code: Option<&'a str>
To get the specified device’s network code.
network_addr: Option<&'a str>
To get the specified device’s network address.
proc_gte: Option<DateTime<Utc>>
To get data greater than and equal to the specified proc
time.
proc_lte: Option<DateTime<Utc>>
To get data less than and equal to the specified proc
time.
resp_gte: Option<DateTime<Utc>>
To get data greater than and equal to the specified resp
time.
resp_lte: Option<DateTime<Utc>>
To get data less than and equal to the specified resp
time.
Trait Implementations§
source§impl<'a> Default for ListQueryCond<'a>
impl<'a> Default for ListQueryCond<'a>
source§fn default() -> ListQueryCond<'a>
fn default() -> ListQueryCond<'a>
Returns the “default value” for a type. Read more