pub enum FsCommands {
Ls,
}
Expand description
Some file-system related commands for debugging/testing
purposes so that we don’t have to run iptables
commands
which are potentially destructive.
Variants§
Ls
List the contents of the current directory.
Trait Implementations§
Source§impl Clone for FsCommands
impl Clone for FsCommands
Source§fn clone(&self) -> FsCommands
fn clone(&self) -> FsCommands
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Command for FsCommands
impl Command for FsCommands
Source§impl Debug for FsCommands
impl Debug for FsCommands
Source§impl From<FsCommands> for Commands
impl From<FsCommands> for Commands
Source§fn from(command: FsCommands) -> Self
fn from(command: FsCommands) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FsCommands
impl PartialEq for FsCommands
impl Copy for FsCommands
impl Eq for FsCommands
impl StructuralPartialEq for FsCommands
Auto Trait Implementations§
impl Freeze for FsCommands
impl RefUnwindSafe for FsCommands
impl Send for FsCommands
impl Sync for FsCommands
impl Unpin for FsCommands
impl UnwindSafe for FsCommands
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.