pub struct MatchRule {
pub tag_id: Option<i32>,
pub sex: Option<i32>,
pub country: Option<String>,
pub province: Option<String>,
pub city: Option<String>,
pub client_platform_type: Option<u8>,
pub language: Option<String>,
}
Fields§
§tag_id: Option<i32>
§sex: Option<i32>
§country: Option<String>
§province: Option<String>
§city: Option<String>
§client_platform_type: Option<u8>
§language: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MatchRule
impl<'de> Deserialize<'de> for MatchRule
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MatchRule
impl RefUnwindSafe for MatchRule
impl Send for MatchRule
impl Sync for MatchRule
impl Unpin for MatchRule
impl UnwindSafe for MatchRule
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more