mosaik 0.3.13

A Rust runtime for building self-organizing, leaderless distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use {
	super::Datum,
	serde::{Deserialize, Serialize},
};

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct Criteria {}

impl Criteria {
	pub const fn matches<D: Datum>(&self, _item: &D) -> bool {
		true
	}
}