mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-18 09:35:50 +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;
|
||||
|
||||
/// A query filter.
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
||||
pub enum Filter<'a> {
|
||||
IsSecured(bool),
|
||||
RunsMap(&'a str),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue