pub trait System {
type NodeId: Clone + Hash + Eq;
type MessageId: Clone + Hash + Eq;
type MessagePayload: Clone;
}Expand description
This trait allows for defining a system to which Plumtree nodes belong.
Required Associated Types§
Sourcetype MessagePayload: Clone
type MessagePayload: Clone
Message payload.