pub enum SaveLoadCommand {
Base(Base),
LoadVariable(LoadVariable),
SaveVariable(SaveVariable),
}Variants§
Trait Implementations§
Source§impl Clone for SaveLoadCommand
impl Clone for SaveLoadCommand
Source§fn clone(&self) -> SaveLoadCommand
fn clone(&self) -> SaveLoadCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for SaveLoadCommand
impl PartialEq for SaveLoadCommand
impl StructuralPartialEq for SaveLoadCommand
Auto Trait Implementations§
impl Freeze for SaveLoadCommand
impl RefUnwindSafe for SaveLoadCommand
impl Send for SaveLoadCommand
impl Sync for SaveLoadCommand
impl Unpin for SaveLoadCommand
impl UnwindSafe for SaveLoadCommand
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