You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
334 B
Rust

use crate::constants::HYDRUS_TYPE_TAG_FILTER;
use crate::hydrus_serializable::HydrusSerializable;
use serde::Deserialize;
use serde_json::Value;
#[derive(Clone, Debug, Deserialize)]
pub struct HydrusTagFilter(pub Value);
impl HydrusSerializable for HydrusTagFilter {
fn type_id() -> u64 {
HYDRUS_TYPE_TAG_FILTER
}
}