pub struct FilterPair {
pub type_: Option<String>,
pub value: Option<String>,
}Expand description
Filter used to match traffic data in your report.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_: Option<String>Filter type.
value: Option<String>Filter value.
Trait Implementations§
Source§impl Clone for FilterPair
impl Clone for FilterPair
Source§fn clone(&self) -> FilterPair
fn clone(&self) -> FilterPair
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FilterPair
impl Debug for FilterPair
Source§impl Default for FilterPair
impl Default for FilterPair
Source§fn default() -> FilterPair
fn default() -> FilterPair
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilterPair
impl<'de> Deserialize<'de> for FilterPair
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
Source§impl Serialize for FilterPair
impl Serialize for FilterPair
impl Part for FilterPair
Auto Trait Implementations§
impl Freeze for FilterPair
impl RefUnwindSafe for FilterPair
impl Send for FilterPair
impl Sync for FilterPair
impl Unpin for FilterPair
impl UnwindSafe for FilterPair
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