pub enum ScheduleOperation {
APPEND {
time: MinecraftTime,
},
CLEAR,
REPLACE {
time: MinecraftTime,
},
}
Variants§
Trait Implementations§
source§impl Debug for ScheduleOperation
impl Debug for ScheduleOperation
source§impl PartialEq<ScheduleOperation> for ScheduleOperation
impl PartialEq<ScheduleOperation> for ScheduleOperation
source§fn eq(&self, other: &ScheduleOperation) -> bool
fn eq(&self, other: &ScheduleOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.