pub enum ScheduleOperation {
Append {
time: MinecraftTime,
},
Clear,
Replace {
time: MinecraftTime,
},
}Variants§
Trait Implementations§
Source§impl Clone for ScheduleOperation
impl Clone for ScheduleOperation
Source§fn clone(&self) -> ScheduleOperation
fn clone(&self) -> ScheduleOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScheduleOperation
impl Debug for ScheduleOperation
Source§impl PartialEq for ScheduleOperation
impl PartialEq for ScheduleOperation
Source§fn eq(&self, other: &ScheduleOperation) -> bool
fn eq(&self, other: &ScheduleOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScheduleOperation
Auto Trait Implementations§
impl Freeze for ScheduleOperation
impl RefUnwindSafe for ScheduleOperation
impl Send for ScheduleOperation
impl Sync for ScheduleOperation
impl Unpin for ScheduleOperation
impl UnsafeUnpin for ScheduleOperation
impl UnwindSafe for ScheduleOperation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more