mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
[Service] Add Copy trait to VMS Filter
This commit is contained in:
parent
e159cfebbd
commit
3b694815cc
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ use std::collections::HashMap;
|
||||||
use std::mem::Discriminant;
|
use std::mem::Discriminant;
|
||||||
|
|
||||||
/// A query filter.
|
/// A query filter.
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
||||||
pub enum Filter<'a> {
|
pub enum Filter<'a> {
|
||||||
IsSecured(bool),
|
IsSecured(bool),
|
||||||
RunsMap(&'a str),
|
RunsMap(&'a str),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue