pub enum EventCommand {
New,
Open(Selector),
Edit(Selector),
Delete(Selector),
Duplicate(Selector),
Move {
calendar: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for EventCommand
impl Clone for EventCommand
Source§fn clone(&self) -> EventCommand
fn clone(&self) -> EventCommand
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 EventCommand
impl Debug for EventCommand
Source§impl PartialEq for EventCommand
impl PartialEq for EventCommand
Source§fn eq(&self, other: &EventCommand) -> bool
fn eq(&self, other: &EventCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EventCommand
impl StructuralPartialEq for EventCommand
Auto Trait Implementations§
impl Freeze for EventCommand
impl RefUnwindSafe for EventCommand
impl Send for EventCommand
impl Sync for EventCommand
impl Unpin for EventCommand
impl UnsafeUnpin for EventCommand
impl UnwindSafe for EventCommand
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