pub unsafe trait Bag {
// Required methods
fn is_empty(&self) -> bool;
fn clear(&mut self);
}
Expand description
Trait that defines the methods that a DEVS event bag set must implement.
§Safety
This trait must be implemented via macros. Do not implement it manually.