pub enum RemoteCommands {
Add {
name: String,
url: String,
},
Remove {
name: String,
},
List {
verbose: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for RemoteCommands
impl Clone for RemoteCommands
Source§fn clone(&self) -> RemoteCommands
fn clone(&self) -> RemoteCommands
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 moreAuto Trait Implementations§
impl Freeze for RemoteCommands
impl RefUnwindSafe for RemoteCommands
impl Send for RemoteCommands
impl Sync for RemoteCommands
impl Unpin for RemoteCommands
impl UnsafeUnpin for RemoteCommands
impl UnwindSafe for RemoteCommands
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